mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-24 14:32:08 +00:00
12 lines
228 B
C
12 lines
228 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 *);
|
||
|
|
||
|
#endif
|