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

Method writeByte

src/main/java/jace/core/PagedMemory.java:125–129  ·  view source on GitHub ↗
(int address, byte value)

Source from the content-addressed store, hash-verified

123 }
124
125 public void writeByte(int address, byte value) {
126 byte[] page = getMemoryPage(address);
127 StateManager.markDirtyValue(page);
128 getMemoryPage(address)[address & 0x0ff] = value;
129 }
130
131 public void fillBanks(PagedMemory source) {
132 byte[][] sourceMemory = source.getMemory();

Callers 4

mouseClickedMethod · 0.95
performActionMethod · 0.95
performProdosPatchMethod · 0.95
updateMouseStateMethod · 0.95

Calls 2

getMemoryPageMethod · 0.95
markDirtyValueMethod · 0.95

Tested by

no test coverage detected