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

Add missing decls for switch read/write

This commit is contained in:
Peter Evans 2018-01-16 23:49:14 -06:00
parent 9811bbe450
commit 9d6869bfc4

View File

@ -69,5 +69,7 @@ extern SEGMENT_READER(apple2_mem_zp_read);
extern SEGMENT_WRITER(apple2_mem_zp_write);
extern int apple2_mem_init_sys_rom(apple2 *);
extern void apple2_mem_map(apple2 *, vm_segment *);
extern SEGMENT_READER(apple2_mem_switch_read);
extern SEGMENT_WRITER(apple2_mem_switch_write);
#endif