| 211 | return cpu.registers.index[cpu.PREFIX ^ 1].hl; |
| 212 | } |
| 213 | static void cpu_write_other_index(uint32_t value) { |
| 214 | cpu.registers.index[cpu.PREFIX ^ 1].hl = value; |
| 215 | } |
| 216 | |
| 217 | static uint32_t cpu_index_address(void) { |
| 218 | uint32_t value = cpu_read_index(); |