all repos — xyw @ df6b8d925172b6f23d627ba48521b3a9aeb736cd

A minimal virtual machine and assembler for terminals.

examples/lib/PUTS.xyw

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
; .include "lib/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