mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-18 22:06:01 +00:00
bf529d6c9b
We still need to revise the test code we currently have for handling keyboard functions; I imagine some code will need to be removed.
12 lines
208 B
C
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
|