| 196 | return cpu.registers.index[cpu.PREFIX].hl; |
| 197 | } |
| 198 | static void cpu_write_index(uint32_t value) { |
| 199 | cpu.registers.index[cpu.PREFIX].hl = value; |
| 200 | } |
| 201 | static void cpu_write_index_partial_mode(uint32_t value) { |
| 202 | value = cpu_mask_mode(value, cpu.L); |
| 203 | if (cpu.L) { |
no outgoing calls
no test coverage detected