all repos — xyw @ 09909160cf03d85143caee8059e5d650b24658ac

A minimal virtual machine and assembler for terminals.

examples/lib/PUTS.xyw

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
; .include "_macros.xyw"

; Print a string starting at address
; a16 -- | [xw]
.label PUTS
  POPxw
  .label PUTS.loop
    LDBxw terminal.output STB
    INCxw LDBxw PUTS.loop JCNw
  CLRxw
  RTS