]> Shamusworld >> Repos - apple2/blob - src/firmware.h
8ef9d14b52a151700b86f5d4e51bd4cb0e915776
[apple2] / src / 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 extern uint8_t hd2ROM[0x8000];
22
23 #endif  // __FIRMWARE_H__
24