| 82 | return (int8_t)cpu_fetch_byte(); |
| 83 | } |
| 84 | static uint32_t cpu_fetch_word(void) { |
| 85 | uint32_t value = cpu_fetch_byte(); |
| 86 | value |= cpu_fetch_byte() << 8; |
| 87 | if (cpu.IL) { |
| 88 | value |= cpu_fetch_byte() << 16; |
| 89 | } |
| 90 | return value; |
| 91 | } |
| 92 | static uint32_t cpu_fetch_word_no_prefetch(void) { |
| 93 | uint32_t value = cpu_fetch_byte(); |
| 94 | value |= cpu.prefetch << 8; |
no test coverage detected