all repos — xyw @ 849d54755c2a998c16ffa2ac85c9096ca07f3d7b

A minimal virtual machine and assembler for terminals.

Optimized file size.
h3rald h3rald@h3rald.com
Sun, 19 Jul 2026 20:03:42 +0000
commit

849d54755c2a998c16ffa2ac85c9096ca07f3d7b

parent

ba618c59fa985920a63016123be5aaec5b6c6b4b

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

jump to
M MakefileMakefile

@@ -1,5 +1,6 @@

CC = gcc -CFLAGS = -Wall -Wextra -g +CFLAGS = -Wall -Wextra -g -Os -ffunction-sections -fdata-sections +LDFLAGS = -Wl,--gc-sections -s SOURCES = xyw.c xywasm.c xywrun.c devices/system.c devices/terminal.c devices/clock.c devices/file.c devices/beeper.c OBJS = xyw.o xywasm.o xywrun.o devices/system.o devices/terminal.o devices/clock.o devices/file.o devices/beeper.o