Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
493
uint16_t ReadWordFromMemory(uint16_t addr)
494
{
495
return ReadByteFromMemory(addr) | (ReadByteFromMemory(addr + 1) << 8);
496
}
497
498
void WriteByteToMemory(uint16_t addr, uint8_t data)
499
{
Callers
10
CpuReset
Function · 0.85
IOWriteInternal
Method · 0.85
ArgsCook
Function · 0.85
_6502_GetOpmodeOpbyte
Function · 0.85
_6502_GetTargets
Function · 0.85
_6502_GetTargetAddress
Function · 0.85
DrawTargets
Function · 0.85
GetDisassemblyLine
Function · 0.85
FormatNopcodeBytes
Function · 0.85
MemoryDumpCheck
Function · 0.85
Calls
1
ReadByteFromMemory
Function · 0.85
Tested by
no test coverage detected