]> Shamusworld >> Repos - apple2/blob - src/mmu.h
f5a5b7232c17b08fdbee70083ec3c7f6bb0f3f3e
[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 void SwitchLC(void);
10
11 #endif  // __MMU_H__
12