home *** CD-ROM | disk | FTP | other *** search
/ cs.rhul.ac.uk / www.cs.rhul.ac.uk.zip / www.cs.rhul.ac.uk / pub / rdp / rdp_cs3460.tar / mvm_def.h < prev    next >
Text File  |  1998-05-07  |  545b  |  15 lines

  1. /*******************************************************************************
  2. *
  3. * RDP release 1.50 by Adrian Johnstone (A.Johnstone@rhbnc.ac.uk) 20 December 1997
  4. *
  5. * mvm_def.h - Mini Virtual Machine opcode definitions
  6. *
  7. * This file may be freely distributed. Please mail improvements to the author.
  8. *
  9. *******************************************************************************/
  10. enum opcodes{OP_HALT, OP_ADD, OP_SUB, OP_MUL, OP_DIV, OP_EXP, 
  11.   OP_EQ, OP_NE, OP_GT, OP_GE, OP_LT, OP_LE, 
  12.   OP_CPY, 
  13.   OP_BNE, OP_BEQ, 
  14.   OP_PRTS, OP_PRTI}; 
  15.