| 76 | } |
| 77 | |
| 78 | static INLINE void WrRAM(unsigned int A, uint8 V) |
| 79 | { |
| 80 | RAM[A]=V; |
| 81 | #ifdef _S9XLUA_H |
| 82 | CallRegisteredLuaMemHook(A, 1, V, LUAMEMHOOK_WRITE); |
| 83 | #endif |
| 84 | _DB = V; |
| 85 | } |
| 86 | |
| 87 | uint8 X6502_DMR(uint32 A) |
| 88 | { |
nothing calls this directly
no test coverage detected