New build script
This commit is contained in:
parent
a1ade4ce45
commit
59886ce34b
12
README.md
12
README.md
|
@ -1,9 +1,19 @@
|
||||||
# Uxn
|
# Uxn
|
||||||
|
|
||||||
An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
|
An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
|
||||||
|
|
||||||
More docs coming soon.
|
More docs coming soon.
|
||||||
|
|
||||||
|
## Graphical
|
||||||
|
|
||||||
|
All you need is X11.
|
||||||
|
|
||||||
|
```
|
||||||
|
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
|
||||||
|
```
|
||||||
|
|
||||||
|
## Terminal
|
||||||
|
|
||||||
If you wish to build the emulator without graphics mode:
|
If you wish to build the emulator without graphics mode:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
Loading…
Reference in New Issue