clean up some stuff.

This commit is contained in:
Kelvin Sherlock 2016-09-05 14:34:22 -04:00
commit 5b952ae580
2 changed files with 3 additions and 6 deletions

View File

@ -129,9 +129,6 @@ extern macroTableEntryType *macroTable[HASH_TABLE_SIZE];
extern opcodeTableEntryType *opcodeTable[HASH_TABLE_SIZE];
extern opcodeTableEntryType theOpcodes[];
extern opcodeTableEntryType theOpcodes_02[];
extern opcodeTableEntryType theOpcodes_c02[];
extern opcodeTableEntryType theOpcodes_c02s[];
extern keywordTableEntryType *keywordTable[HASH_TABLE_SIZE];

View File

@ -128,9 +128,9 @@ keywordTableEntryType *keywordTable[HASH_TABLE_SIZE];
conditionTableEntryType *conditionTable[HASH_TABLE_SIZE];
#define m 0x01 /* mos 6502 */
#define c 0x02 /* wdc 65c02 */
#define r 0x04 /* rockwell 65c02 */
#define m P6502 /* mos 6502 */
#define c P65C02 /* wdc 65c02 */
#define r P65C02R /* rockwell 65c02 */
/* wdc w65c02s is c | r */
/* 0 means all machines */