all repos — xyw @ 602f8439b7defd3cd7bb67aab7b13b81734afd55

A minimal virtual machine and assembler for terminals.

Fixes.
h3rald h3rald@h3rald.com
Wed, 03 Dec 2025 21:33:18 +0000
commit

602f8439b7defd3cd7bb67aab7b13b81734afd55

parent

d5abb98038349a1b2601d8893999c1616a89fb9a

2 files changed, 2 insertions(+), 3 deletions(-)

jump to
M devices/console.cdevices/console.c

@@ -23,7 +23,6 @@ (void)error;

switch (addr) { case XYW_CONSOLE_OUTPUT: - printf(" "); fputc(val, stdout); fflush(stdout); break;
M xywrun.cxywrun.c

@@ -1,8 +1,8 @@

#include <stdio.h> #include "xyw.h" -#include "devices/system.c" -#include "devices/console.c" +#include "devices/system.h" +#include "devices/console.h" #define MEMORY_SIZE 0xffff #define STACK_SIZE 0xff