]> Shamusworld >> Repos - apple2/blob - src/mmu.h
Created new MMU based code for R/W handling. Should be much faster now.
[apple2] / src / mmu.h
1 #ifndef __MMU_H__
2 #define __MMU_H__
3
4 #include <stdint.h>
5
6 void SetupAddressMap(void);
7 uint8_t AppleReadMem(uint16_t);
8 void AppleWriteMem(uint16_t, uint8_t);
9
10 #endif  // __MMU_H__
11