commit 127cf19
Devine Lu Linvega
·
2025-12-29 17:42:27 +0000 UTC
parent d2d8463
Added note about drifblim in readme
+9,
-0
1@@ -43,6 +43,15 @@ A manual page is provided documenting the Uxntal language:
2 man ./doc/man/uxntal.7
3 ```
4
5+## Assembler
6+
7+This repository comes with a copy of the compiled [Drifblim](https://git.sr.ht/~rabbits/drifblim) assembler.
8+
9+```sh
10+cat etc/utils/drifblim.rom.txt | bin/uxn11 etc/utils/xh.rom > bin/drifblim.rom
11+bin/uxn11 bin/drifblim.rom etc/tests/opctest.tal bin/opctest.rom
12+```
13+
14 After running `make install` the man page should be found by `man uxntal`.
15
16 ## Devices
M
makefile
+1,
-1
1@@ -47,7 +47,7 @@ bin/uxn11-debug: src/uxn11.c
2 # Tools
3
4 bin/drifblim.rom: bin/uxn11 etc/utils/drifblim.rom.txt
5- @ cat etc/utils/drifblim.rom.txt | ./bin/uxn11 etc/utils/xh.rom > bin/drifblim.rom
6+ @ cat etc/utils/drifblim.rom.txt | bin/uxn11 etc/utils/xh.rom > bin/drifblim.rom
7
8 # Tests
9