| 132 | return cpu_pop_byte_mode(cpu.L); |
| 133 | } |
| 134 | static void cpu_push_byte_mode(uint8_t value, bool mode) { |
| 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 | } |
no test coverage detected