]> Shamusworld >> Repos - apple2/blob - src/mmu.h
Added disk selection functionality, fixed power cycle bug.
[apple2] / src / mmu.h
1 #ifndef __MMU_H__
2 #define __MMU_H__
3
4 #include <stdint.h>
5
6 void SetupAddressMap(void);
7 void ResetMMUPointers(void);
8 uint8_t AppleReadMem(uint16_t);
9 void AppleWriteMem(uint16_t, uint8_t);
10 void SwitchLC(void);
11
12 #endif  // __MMU_H__
13