1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 01:29:37 +00:00
erc-c/include/apple2.pc.h
2018-01-15 23:50:33 -06:00

15 lines
362 B
C

#ifndef _APPLE2_PC_H_
#define _APPLE2_PC_H_
#include "apple2.h"
#include "vm_segment.h"
extern SEGMENT_READER(apple2_pc_read);
extern SEGMENT_READER(apple2_pc_switch_read);
extern SEGMENT_WRITER(apple2_pc_switch_write);
extern SEGMENT_WRITER(apple2_pc_write);
extern size_t apple2_pc_rom_addr(size_t, vm_8bit);
extern void apple2_pc_map(vm_segment *);
#endif