program-o-steve
program-o-steve

Reputation: 2678

What is pseudo-op in assembly programming?

What is pseudo-op in assembly programming?

I read a statement at this page:

"If a particular symbol appears in the source code, but is not found in the symbol table, then the symbol was never defined. That is, the assembler did not encounter the symbol in the label field of any of the statements scanned during the first pass, or the symbol was never the subject of a .comm, .csect, .lcomm, .sect, or .set pseudo-op."

Upvotes: 4

Views: 23719

Answers (2)

user3162364
user3162364

Reputation: 1

Pseudo-op is an assembly language instruction that specify an operation of assembler. Example: START , END , USING, DC, DS in programs

Upvotes: 0

Gunther Piez
Gunther Piez

Reputation: 30449

Pseudo op stands for "pseudo operation" and is sometimes called "assembler directive". These are keywords which do not directly translate to a machine instruction. Examples are the ones mentioned in your questions or .data, .def, .desc, .dim, .double, .eject, .else, .elseif, .end and many more. Refer to your assembler manual.

Upvotes: 7

Related Questions