ack/util/int/switch.c
1988-06-22 16:57:09 +00:00

30 lines
466 B
C

/*
The big switch on all the opcodes
*/
/* $Header$ */
#include <em_abs.h>
#include "global.h"
#include "opcode.h"
#include "text.h"
#include "trap.h"
#include "warn.h"
do_instr(opcode)
unsigned int opcode;
{
switch (opcode) {
#include "switch/DoCases" /* for the muscle */
case SECONDARY:
do_instr(SEC_BASE + nextPCbyte());
break;
case TERTIARY:
do_instr(TERT_BASE + nextPCbyte());
break;
default:
wtrap(WBADOPC, EILLINS);
break;
}
}