all repos — xyw @ 3b8128eb5d140e39a2ccd90e2f5f70fe8991b3e7

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