interpretor.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _GEL_INTERPRETOR_H
00023 #define _GEL_INTERPRETOR_H
00024
00025 #include <sys/param.h>
00026 #include <stddef.h>
00027
00028 #include "config.h"
00029
00030 #undef far
00031 #define bank SECT_ATTR(".text.bank2")
00032 #define far FAR_ATTR(".text.bank2")
00033
00034
00039 class interpretor {
00040
00041
00042 int bank execute(const char* line);
00043
00044
00045 void bank get_command (char *buf);
00046 public:
00047
00048
00049 void far main_loop();
00050 };
00051
00052 #endif
|