mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-18 22:06:01 +00:00
14 lines
325 B
C
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
|