1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-02 11:29:36 +00:00

Add headers for insert, shift

This commit is contained in:
Peter Evans 2017-12-15 16:46:22 -06:00
parent 079a35507c
commit a034408f03

View File

@ -2,6 +2,8 @@
#define _APPLE2_DISK_DRIVE_H
#include <stdbool.h>
#include <stdio.h>
#include <sys/stat.h>
#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