Source code for /engineering/bos/rewrite/INSTNAME.HOriginal file INSTNAME.H
   1 /*
   2 	BattleOS : Engage battling programs.
   3 
   4 	Copyright (C) 1992 Erich P Gatejen    ALL RIGHTS RESERVED
   5 
   6 
   7 	File     : Instname.h
   8 	Purpose  : Header file for the BattleOS containing instruction names
   9 
  10      Dependent upon file BOS.h
  11 
  12 */
  13 
  14 char   InstNames[Numtokens][4] = { "DAT",
  15 							"MOV",
  16 							"CMP",
  17 							"JE ",
  18 							"JB ",
  19 							"JA ",
  20 							"JMP",
  21 							"INC",
  22 							"DEC",
  23 							"ADD",
  24 							"SUB",
  25 							"LOP",
  26 							"RND",
  27 							"WT ",
  28 							"TMR",
  29 							"HLT"
  30 		
  31 }; /* end InstNames definition */