| 189 | return cpu.registers.index[cpu.PREFIX].h; |
| 190 | } |
| 191 | static void cpu_write_index_high(uint8_t value) { |
| 192 | cpu.registers.index[cpu.PREFIX].h = value; |
| 193 | } |
| 194 | |
| 195 | static uint32_t cpu_read_index(void) { |
| 196 | return cpu.registers.index[cpu.PREFIX].hl; |
no outgoing calls
no test coverage detected