all repos — xyw @ c632e3a4cdd4d21b1f431030eb3723bbed10ae9d

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