]> Shamusworld >> Repos - apple2/blob - src/firmware/firmware.h
Added Apple II/IIe firmware, fixed HD write emulation.
[apple2] / src / firmware / firmware.h
1 #ifndef __FIRMWARE_H__
2 #define __FIRMWARE_H__
3
4 #include <stdint.h>
5
6 extern uint8_t diskROM[0x100];  // Loads at $C600 (slot 6)
7 extern uint8_t hdROM[0x100];    // Loads at $C700 (slot 7)
8 extern uint8_t parallelROM[0x100];// (slot 1)
9 //Not sure what the heck this is...
10 extern uint8_t slot2e[0x100];
11 //This looks identical to diskROM
12 extern uint8_t slot6e[0x100];
13 // Various firmware from the IIc
14 extern uint8_t slot1[0x100];
15 extern uint8_t slot2[0x100];
16 extern uint8_t slot3[0x100];
17 extern uint8_t slot4[0x100];
18 extern uint8_t slot5[0x100];
19 extern uint8_t slot6[0x100];
20 extern uint8_t slot7[0x100];
21
22 #endif  // __FIRMWARE_H__
23