This procedure processes one assembler instruction.
|
This procedure scans assembler instruction and returns next assembler token.
|
This function checks if identifier in instruction is valid and returns its data.
|
Assembler expressions (instruction parameters) are processed similarly to Pascal expressions. The expression is divided into smaller parts according to the operator precedence.
|
This function checks and processes assembler directives DB, DW and DD.
|
Assembler instructions (in fact mnemonics) are stored in a symbol table where each instruction has few data bytes which define which procedure will process it and what combinations of parameters are possible.
|
This procedure generates intermediate code from opcodes and references generated for current assembler instruction.
|