all repos — xyw @ 3a2ebec18c570de453e3e5b7f76158f0f82a5c58

A minimal virtual machine and assembler for terminals.

examples/lib/puts.xyw

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
; .include "lib/macros.xyw"

; Print a string starting at address
; s ->
.label puts
  POPxw
  .label puts.loop
    LDBxw PUTC
    INCxw LDBxw puts.loop JCNw
  RTS