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

Function ReadUINT24FromMemory

source/Memory.cpp:2660–2665  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2658//===========================================================================
2659
2660static uint32_t ReadUINT24FromMemory(uint16_t addr)
2661{
2662 return ReadByteFromMemory(addr) |
2663 (ReadByteFromMemory(addr + 1) << 8) |
2664 (ReadByteFromMemory(addr + 2) << 16);
2665}
2666
2667bool MemOptimizeForModeChanging(WORD programcounter, WORD address)
2668{

Callers 1

Calls 1

ReadByteFromMemoryFunction · 0.85

Tested by

no test coverage detected