| 215 | } |
| 216 | |
| 217 | static uint32_t cpu_index_address(void) { |
| 218 | uint32_t value = cpu_read_index(); |
| 219 | if (cpu.PREFIX) { |
| 220 | value += cpu_fetch_offset(); |
| 221 | } |
| 222 | return cpu_mask_mode(value, cpu.L); |
| 223 | } |
| 224 | |
| 225 | static uint8_t cpu_read_reg(int i) { |
| 226 | uint8_t value; |
no test coverage detected