| 28 | } |
| 29 | |
| 30 | void WriteCP0Config(u32 value) |
| 31 | { |
| 32 | // Protect the read-only ICacheSize (IC) and DataCacheSize (DC) bits |
| 33 | cpuRegs.CP0.n.Config = value & ~0xFC0; |
| 34 | cpuRegs.CP0.n.Config |= 0x440; |
| 35 | } |
| 36 | |
| 37 | ////////////////////////////////////////////////////////////////////////////////////////// |
| 38 | // Performance Counters Update Stuff! |