(int address, int w, boolean generateEvent, boolean requireSynchronization)
| 132 | } |
| 133 | |
| 134 | public void writeWord(int address, int w, boolean generateEvent, boolean requireSynchronization) { |
| 135 | write(address, (byte) (w & 0x0ff), generateEvent, requireSynchronization); |
| 136 | write(address + 1, (byte) ((w >> 8) & 0x0ff), generateEvent, requireSynchronization); |
| 137 | } |
| 138 | |
| 139 | public byte readRaw(int address) { |
| 140 | // if (address >= 65536) return 0; |
no test coverage detected