This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CPU unit-level operations for each cycle of each prefixed (i.e. CB) Game Boy opcode. | |
| # Based on the instruction set chapter from "Game Boy: Complete Technical Reference" (https://github.com/Gekkio/gb-ctr) | |
| - name: RLC B | |
| code: 0 | |
| steps: | |
| - addr: PC | |
| idu: PC ← PC + 1 | |
| data: IR ← mem | |
| alu: B ← rlc B | |
| - name: RLC C |