| 59 | } |
| 60 | |
| 61 | __forceinline s16* GetMemPtr(u32 addr) |
| 62 | { |
| 63 | #ifndef DEBUG_FAST |
| 64 | // In case you're wondering, this assert is the reason SPU2 |
| 65 | // runs so incrediously slow in Debug mode. :P |
| 66 | pxAssume(addr < 0x100000); |
| 67 | #endif |
| 68 | return (_spu2mem + addr); |
| 69 | } |
| 70 | |
| 71 | __forceinline s16 spu2M_Read(u32 addr) |
| 72 | { |
no outgoing calls
no test coverage detected