Advertisement
Ham62

Untitled

Oct 9th, 2017
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Enum Opcodes
  2.     'Standard opcodes
  3.     OP_NOP = 0          '0000
  4.     OP_FLOAT_ALLOC      '0001
  5.     OP_STR_ALLOC        '0002
  6.     OP_DISPATCH         '0003
  7.     OP_CMP_EQUALS       '0004
  8.     OP_CMP_GREATERTHAN  '0005
  9.     OP_CMP_LESSTHAN     '0006
  10.     OP_CMP_INEQUAL      '0007
  11.     OP_SET_VAL_CONST    '0008
  12.     OP_ADDVAR           '0009
  13.     OP_SUBVAR           '000A
  14.     OP_MULVAR           '000B
  15.     OP_DIVVAR           '000C
  16.     OP_ADDCONST         '000D
  17.     OP_SUBCONST         '000E
  18.     OP_MULCONST         '000F
  19.     OP_DIVCONST         '0010
  20.     OP_SET_VAL_VAR      '0011
  21.     OP_RND              '0012
  22.     OP_ROUND            '0013
  23.     OP_PUSH             '0014
  24.     OP_POP              '0015
  25.     OP_SREAD            '0016
  26.     'BIOS Calls
  27.     OP_END = 1000       '1000
  28.     OP_PRINT            '1001
  29.     OP_MOVE             '1002
  30.     OP_TURN             '1003
  31.     OP_READSENSOR       '1004
  32. End Enum
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement