Advertisement
Guest User

Main

a guest
Nov 23rd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. start:  IN
  2.     DUP
  3.    
  4.     BIPUSH 0x2B             // Checking whether it is a symbol or a number
  5.     IF_ICMPEQ goto          // If symbol, do the according operation
  6.     DUP                     // If number, go on
  7.    
  8.     BIPUSH 0x2D
  9.     IF_ICMPEQ goto3
  10.     DUP
  11.    
  12.     BIPUSH 0x2A
  13.     IF_ICMPEQ goto4
  14.     DUP
  15.    
  16.     BIPUSH 0x3D
  17.     IF_ICMPEQ goto2
  18.     BIPUSH 0x30             // Converting number to a lower level for a precise calculations
  19.     ISUB
  20.     GOTO start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement