12345678910111213141516171819202122232425262728 |
- asm opcodes:
- nop: 0x0000
- ld:
- Load Value into Register
- ld AL #CONSTANT: xx14 (0-127)
- Values itieriert von -32768-32767 in file.
- ld suffixes: AL 14, AH 10, X 18, Y 1C
- LSB Or-In
- 0x03: (????, Y) Load from Address, (offset based on register Y?)
- 0x02: (????, X) Load from Address, (offset based on register X?)
- 0x01: (????): Load From Address, absolute
- 0x00: Immediate
- LD specialcases:
- ld xh, @(1,y) = 010e, Regel rausfinden, Riect nach dem MSByte für die bra-adresse
- st:
- Selbe Logik wie für ld bei Multibyte-Opcodes
|