[Scope of application]
adviceXross, adviceLUNA II, adviceLUNA
[Question]
How to specify address (numerical value) when editing memory or setting event? and, How to specify the address range?
[Answer]
The address specification (specifying numerical value) is a way to specify a numerical value as an address. Decimal, hexadecimal, and octal can be used.
- For hexadecimal, add “0x” at the beginning of the numerical value.
- For octal, add “O” or “o “at the end of the numerical value.
[Example of command]
mem b 1000 =Change the contents of address 0x11 → 3e8 to byte data 0x11.
mem l 0x1000 = Change the contents of address 0xabcd → 1000 to long data 0xabcd.