| 29 | } |
| 30 | |
| 31 | void InvalidPage::writeb(MMU* mmu, U32 address, U8 value) { |
| 32 | KThread* thread = KThread::currentThread(); |
| 33 | thread->seg_mapper(address, false, true); |
| 34 | } |
| 35 | |
| 36 | U16 InvalidPage::readw(MMU* mmu, U32 address) { |
| 37 | KThread* thread = KThread::currentThread(); |
nothing calls this directly
no test coverage detected