ack/util/int/switch.c

30 lines
455 B
C
Raw Normal View History

1988-06-22 16:57:09 +00:00
/*
The big switch on all the opcodes
*/
1994-06-24 11:31:16 +00:00
/* $Id$ */
1988-06-22 16:57:09 +00:00
#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 "DoCases" /* for the muscle */
1988-06-22 16:57:09 +00:00
case SECONDARY:
do_instr(SEC_BASE + nextPCbyte());
break;
case TERTIARY:
do_instr(TERT_BASE + nextPCbyte());
break;
default:
wtrap(WBADOPC, EILLINS);
break;
}
}