// test asm

asm(x)
  x = 0

plot(x,y,color)
  asm("st r1 1010")
  asm("st r2 1011")
  asm("trap r3 #15")

line(a,b)
  i = a
  while( i < b )
    plot(i,i,1)
    i = i + 1

main()
  line(10,30)
  

