MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / ReadWordFromMemory

Function ReadWordFromMemory

source/Memory.cpp:493–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

491}
492
493uint16_t ReadWordFromMemory(uint16_t addr)
494{
495 return ReadByteFromMemory(addr) | (ReadByteFromMemory(addr + 1) << 8);
496}
497
498void WriteByteToMemory(uint16_t addr, uint8_t data)
499{

Callers 10

CpuResetFunction · 0.85
IOWriteInternalMethod · 0.85
ArgsCookFunction · 0.85
_6502_GetOpmodeOpbyteFunction · 0.85
_6502_GetTargetsFunction · 0.85
_6502_GetTargetAddressFunction · 0.85
DrawTargetsFunction · 0.85
GetDisassemblyLineFunction · 0.85
FormatNopcodeBytesFunction · 0.85
MemoryDumpCheckFunction · 0.85

Calls 1

ReadByteFromMemoryFunction · 0.85

Tested by

no test coverage detected