| 139 | } |
| 140 | |
| 141 | static void cpu_push_word(uint32_t value) { |
| 142 | if (cpu.L) { |
| 143 | cpu_push_byte(value >> 16); |
| 144 | } |
| 145 | cpu_push_byte(value >> 8); |
| 146 | cpu_push_byte(value); |
| 147 | } |
| 148 | |
| 149 | static uint32_t cpu_pop_word(void) { |
| 150 | uint32_t value = cpu_pop_byte(); |
no test coverage detected