From a034408f0342b663b8ffa448ad784d87bddbfe66 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Fri, 15 Dec 2017 16:46:22 -0600 Subject: [PATCH] Add headers for insert, shift --- include/apple2.dd.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/apple2.dd.h b/include/apple2.dd.h index 1507fbd..ff07c20 100644 --- a/include/apple2.dd.h +++ b/include/apple2.dd.h @@ -2,6 +2,8 @@ #define _APPLE2_DISK_DRIVE_H #include +#include +#include #include "vm_bits.h" #include "vm_segment.h" @@ -86,5 +88,8 @@ extern void apple2dd_set_mode(apple2dd *, int); extern void apple2dd_turn_on(apple2dd *, bool); extern void apple2dd_write_protect(apple2dd *, bool); extern int apple2dd_position(apple2dd *); +extern void apple2dd_eject(apple2dd *); +extern int apple2dd_insert(apple2dd *, FILE *); +extern void apple2dd_shift(apple2dd *, int); #endif