Difference between revisions of "Auto Assembler:label"
Jump to navigation
Jump to search
(→Related Commands) |
(→Examples) |
||
Line 26: | Line 26: | ||
... | ... | ||
+ | |||
+ | label(mylabel) | ||
+ | |||
+ | 00451029: | ||
+ | jmp 00410000 | ||
+ | nop | ||
+ | nop | ||
+ | nop | ||
+ | mylabel: | ||
+ | |||
+ | 00410000: | ||
+ | mov [00580120],esi | ||
+ | mov [esi+80],ebx | ||
+ | xor eax,eax | ||
+ | jmp mylabel | ||
== See also == | == See also == |
Revision as of 22:19, 11 March 2017
Auto Assembler label(LabelName)
Enables the word 'LabelName' to be used as a symbol.
Note: The label address must be set to be used.
Tip: Use registerSymbol to use the label in other AA scripts.
Command Parameters
Parameter | Type | Description |
---|---|---|
LabelName | string | The label name |
Examples
label(someLabel) ... 00123ABC: someLabel: ...
label(mylabel) 00451029: jmp 00410000 nop nop nop mylabel: 00410000: mov [00580120],esi mov [esi+80],ebx xor eax,eax jmp mylabel