| 65 | } |
| 66 | |
| 67 | static INLINE uint8 RdRAM(unsigned int A) |
| 68 | { |
| 69 | _DB=ARead[A](A); |
| 70 | #ifdef _S9XLUA_H |
| 71 | CallRegisteredLuaMemHook(A, 1, _DB, LUAMEMHOOK_READ); |
| 72 | #endif |
| 73 | //bbit edited: this was changed so cheat substituion would work |
| 74 | // return(_DB=RAM[A]); |
| 75 | return(_DB); |
| 76 | } |
| 77 | |
| 78 | static INLINE void WrRAM(unsigned int A, uint8 V) |
| 79 | { |
nothing calls this directly
no test coverage detected