| 135 | mem_write_cpu(cpu_address_mode(--cpu.registers.stack[mode].hl, mode), value); |
| 136 | } |
| 137 | static void cpu_push_byte(uint8_t value) { |
| 138 | cpu_push_byte_mode(value, cpu.L); |
| 139 | } |
| 140 | |
| 141 | static void cpu_push_word(uint32_t value) { |
| 142 | if (cpu.L) { |
no test coverage detected