|
|
|
|
|
by userbinator
3096 days ago
|
|
The Gameboy CPU shares the same octal-structured opcode format as the Z80 from which it was derived, so it is possible to decode it even more concisely: http://www.z80.info/decoding.htm You can see that in octal, 1xx are all moves while 2xx is all ALU ops. |
|
My rust-based GB emulator uses a decoder based on those very docs, in fact. Though, modified slightly since the GB's CPU only supports the CB-extended range operations.