Difference between revisions of "LABEL (instruction)"
Jump to navigation
Jump to search
(Created page with "{{Instruction|op_name=LABEL|op_code=0x01|op_size=0|op_args=0|op_desc=Insert label}} Virtual Machine defines this instruction's size as zero, which means it cannot be used in...") |
(No difference)
|
Latest revision as of 19:32, 16 July 2019
| LABEL | size: | 0 |
| args: | 0 | |
| 0x01 | ||
| Insert label | ||
Virtual Machine defines this instruction's size as zero, which means it cannot be used in code, because it will cause an infinite loop (no operation will be performed and instruction pointer will be advanced by zero bytes).
Most likely used by original compiler during intermediate stages to define label entity.