MCPcopy Create free account
hub / github.com/badvision/jace / readWordRaw

Method readWordRaw

src/main/java/jace/core/RAM.java:155–159  ·  view source on GitHub ↗
(int address)

Source from the content-addressed store, hash-verified

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);

Callers 8

callSmartportMethod · 0.95
newSearchMethod · 0.80
performSearchMethod · 0.80
fromMemoryMethod · 0.80
runMethod · 0.80
injectProgramMethod · 0.80
relocateVariablesMethod · 0.80
prodosMLIMethod · 0.80

Calls 1

readRawMethod · 0.95

Tested by

no test coverage detected