1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 01:29:37 +00:00
erc-c/include/apple2.dbuf.h

14 lines
325 B
C

#ifndef _APPLE2_DBUF_H_
#define _APPLE2_DBUF_H_
#include "apple2.h"
#include "vm_segment.h"
extern SEGMENT_READER(apple2_dbuf_read);
extern SEGMENT_WRITER(apple2_dbuf_write);
extern void apple2_dbuf_map(vm_segment *);
extern SEGMENT_READER(apple2_dbuf_switch_read);
extern SEGMENT_WRITER(apple2_dbuf_switch_write);
#endif