all repos — xyw @ 88877124cdbbd5971f945225c8ec4a7589014f6b

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 PUTC
    INCxw LDBxw puts.loop JCNw
  CLRxw
  RTS