Added memory access type for mmu

This commit is contained in:
2023-10-20 09:58:10 +02:00
parent 5bb973e8da
commit dcdebcd8e4
5 changed files with 61 additions and 17 deletions

View File

@@ -14,5 +14,6 @@ void mem_write32(uint32_t address, uint32_t value);
uint8_t mem_read8(uint32_t address);
uint16_t mem_read16(uint32_t address);
uint32_t mem_read32(uint32_t address);
uint32_t mem_fetch(uint32_t address);
#endif