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

Function CpuWrite

source/CPU.cpp:664–673  ·  view source on GitHub ↗

Called by z80_WRMEM()

Source from the content-addressed store, hash-verified

662
663// Called by z80_WRMEM()
664void CpuWrite(USHORT addr, BYTE value, ULONG uExecutedCycles)
665{
666 if (g_nAppMode == MODE_RUNNING)
667 {
668 _WRITE_WITH_IO_F8xx(value); // Superset of _WRITE
669 return;
670 }
671
672 Heatmap_WriteByte_With_IO_F8xx(addr, value, uExecutedCycles);
673}
674
675//===========================================================================
676

Callers 2

SmartPortCmdStatusMethod · 0.85
z80_WRMEMFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected