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

Function MemIsWriteAux

source/Memory.cpp:2644–2648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2642// . 80STORE && PAGE2 just means that writes occur to aux $400-7FF (and $2000-$3FFF if HIRES=1), not the entire aux 64K
2643
2644bool MemIsWriteAux(uint32_t memMode)
2645{
2646 return (memMode & MF_AUXWRITE) || // Write to aux: $200-$BFFF
2647 ((memMode & MF_80STORE) && (memMode & MF_PAGE2)); // Write to aux: $400-$7FF and $2000-$3FFF
2648}
2649
2650//===========================================================================
2651

Callers 2

IsWriteAuxMethod · 0.85
MemSetPagingFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected