]> Shamusworld >> Repos - apple2/blob - src/harddrive.cpp
0e6a99487bf7900d88b1289603a13d97eea4182a
[apple2] / src / harddrive.cpp
1 //
2 // Hard drive support
3 //
4 // by James Hammons
5 // (C) 2019 Underground Software
6 //
7 // This is done by emulating the Apple 2 High-Speed SCSI card.
8 //
9 // How it works:
10 //
11 // First 1K is the driver ROM, repeated four times.  After that, there are 31 1K
12 // chunks that are addressed in the $CC00-$CFFF address range; $C800-$CBFF is a
13 // 1K RAM space (internally, it's an 8K static RAM).
14 //
15
16 #include "harddrive.h"
17 #include "apple2.h"
18 #include "firmware.h"
19 #include "mmu.h"
20
21
22 void InstallHardDrive(uint8_t slot)
23 {
24 }
25