995
|
1 /*
|
|
2 * This program is in public domain; written by Dave G. Conroy.
|
|
3 * This file contains the main driving routine, and some keyboard processing
|
|
4 * code, for the MicroEMACS screen editor.
|
|
5 *
|
|
6 * REVISION HISTORY:
|
|
7 *
|
|
8 * 1.0 Steve Wilhite, 30-Nov-85
|
|
9 * - Removed the old LK201 and VT100 logic. Added code to support the
|
|
10 * DEC Rainbow keyboard (which is a LK201 layout) using the the Level
|
|
11 * 1 Console In ROM INT. See "rainbow.h" for the function key definitions
|
|
12 *
|
|
13 * 2.0 George Jones, 12-Dec-85
|
|
14 * - Ported to Amiga.
|
|
15 *
|
|
16 * 3.0 Bob Santy, 28-Dec-85
|
|
17 * - Ported to OS9 Level I
|
|
18 */
|
|
19 /* #include <stdio.h> */
|
|
20 #include "ueed.h"
|
|
21 #ifdef VMS
|
|
22 #include <ssdef.h>
|
|
23 #define GOOD (SS$_NORMAL)
|
|
24 #endif
|
|
25
|
|
26 #ifndef GOOD
|
|
27 #define GOOD 0
|
|
28 #endif
|
|
29
|
|
30 #define MAINTABLE 1
|
|
31 #include "uemain.h"
|
|
32
|