| 175 | return cpu.registers.stack[cpu.L].hl; |
| 176 | } |
| 177 | static void cpu_write_sp(uint32_t value) { |
| 178 | cpu.registers.stack[cpu.L].hl = value; |
| 179 | } |
| 180 | |
| 181 | static uint8_t cpu_read_index_low(void) { |
| 182 | return cpu.registers.index[cpu.PREFIX].l; |
no outgoing calls
no test coverage detected