mirror of
https://github.com/tschak909/platotermClassicMac.git
synced 2025-01-14 09:30:45 +00:00
27 lines
363 B
C
Executable File
27 lines
363 B
C
Executable File
#include "keyboard.h"
|
|
#include "key.h"
|
|
#include "protocol.h"
|
|
#include "io.h"
|
|
#include "screen.h"
|
|
#include "trace.h"
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
extern unsigned char running;
|
|
extern unsigned char help_active;
|
|
extern char tmp[64];
|
|
|
|
void keyboard_out(int platoKey)
|
|
{
|
|
}
|
|
|
|
void keyboard_main(void)
|
|
{
|
|
}
|
|
|
|
void keyboard_out_tty(int ch)
|
|
{
|
|
}
|
|
|