:code :rem This is a sample piece of source code that gives a brief :rem review of some of the more advanced features of this :rem compiler. It takes a look at: :rem :rem The 32 bit adder :rem The use of the 8-bit array feature :rem The frequency counter :rem The use of MACROs :equate + as :next :equate frequency as :next :equate index as :next :program 10 reg3 = reg1 + reg2 dim index(100) index(12) = 7 reg9 = index(12) :binary 7 8c 12 97 42 18 33 f7 18 :program 12 execute frequency if REG0 > 4000000 goto 1 display CLOCK LOOKS BAD goto 2 label 1 display FREQUNCY LOOKS GOOD label 2 :program 20 :macro the.macro.name display Here's the macro stop read aaaa :endmacro display Going to macro :the.macro.name display Done with the macro