robmcmullen-apple2/src/harddrive.h
Shamus Hammons 31d2453ee7 Fixed disk emulation to handle quarter track seeking.
It's not very accurate as it's set to zap the head instantly to where
the phase solenoids indicate, as opposed to moving from the start
position to the destination position in a finite amount of time (which
wouldn't be all that difficult to emulate).  But most things tend to be
pretty well behaved and so this approach seems to work OK.

Also added preliminary hard disk emulation.
2019-02-07 07:46:21 -06:00

10 lines
135 B
C

#ifndef __HARDDRIVE_H__
#define __HARDDRIVE_H__
#include <stdint.h>
void InstallHardDrive(uint8_t slot);
#endif // __HARDDRIVE_H__