all repos — xyw @ 79f1e633e660d676ed207bf5b80e2377db82b144

A minimal virtual machine and assembler for terminals.

Commented print-stdin example.
h3rald h3rald@h3rald.com
Fri, 30 Jan 2026 14:44:04 +0100
commit

79f1e633e660d676ed207bf5b80e2377db82b144

parent

55e3cd8b27768abe33e6f3c488bbf8fca9b521dc

1 files changed, 6 insertions(+), 0 deletions(-)

jump to
M examples/print-stdin.xywexamples/print-stdin.xyw

@@ -1,10 +1,16 @@

.include "devices.xyw" + +; Set on_keypress event handler print-key terminal.on_keypress STW +; End program end JMPw +; on_keypress event handler .label print-key + ; Print typed character terminal.input LDB terminal.output STB + ; Print new line $0A terminal.output STB BRK