1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 01:29:37 +00:00
erc-c/include/apple2.kb.h
Peter Evans bf529d6c9b Finish map, mapper handling for keyboard events
We still need to revise the test code we currently have for handling
keyboard functions; I imagine some code will need to be removed.
2018-01-17 01:07:31 -06:00

12 lines
208 B
C

#ifndef _APPLE2_KB_H_
#define _APPLE2_KB_H_
#include "apple2.h"
#include "vm_screen.h"
#include "vm_segment.h"
extern void apple2_kb_map(vm_segment *);
extern SEGMENT_READER(apple2_kb_switch_read);
#endif