commit 59886ce
neauoire
·
2022-03-27 04:07:01 +0000 UTC
parent a1ade4c
New build script
1 files changed,
+11,
-1
+11,
-1
1@@ -1,9 +1,19 @@
2 # Uxn
3
4-An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
5+An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
6
7 More docs coming soon.
8
9+## Graphical
10+
11+All you need is X11.
12+
13+```
14+gcc src/uxn.c src/devices/system.c src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/devices/datetime.c src/uxn11.c -DNDEBUG -Os -g0 -s -o bin/uxn11 -lX11
15+```
16+
17+## Terminal
18+
19 If you wish to build the emulator without graphics mode:
20
21 ```sh