(int address)
| 153 | } |
| 154 | |
| 155 | public int readWordRaw(int address) { |
| 156 | int lsb = 0x00ff & readRaw(address); |
| 157 | int msb = (0x00ff & readRaw(address + 1)) << 8; |
| 158 | return msb + lsb; |
| 159 | } |
| 160 | |
| 161 | public int readWord(int address, RAMEvent.TYPE eventType, boolean triggerEvent, boolean requireSynchronization) { |
| 162 | int lsb = 0x00ff & read(address, eventType, triggerEvent, requireSynchronization); |
no test coverage detected