commit 21b3969
Devie Lu Linvega
·
2025-12-26 04:22:23 +0000 UTC
parent 5de5f7f
Improved README
1 files changed,
+10,
-13
+10,
-13
1@@ -1,29 +1,26 @@
2 # Uxn11
3
4-An emulator for the [Uxn CPU](https://wiki.xxiivv.com/site/uxn.html) and [Varvara Computer](https://wiki.xxiivv.com/site/varvara.html), written in ANSI C. The emulator contains a few linux specific utilities in the Console device to allow for it to interface with the unix systems.
5+A graphical emulator for the [Varvara Computer](https://wiki.xxiivv.com/site/varvara.html), written in ANSI C. The emulator contains a few linux specific utilities in the Console device to allow for it to interface with the unix systems.
6
7 ## Building
8
9-### Makefile
10+You must have X11 installed.
11
12-For your convenience a [Makefile](https://en.wikipedia.org/wiki/Make_(software)#Makefile) is provided. You can run `make install` to build and install the files.
13+```sh
14+cc -DNDEBUG -O2 -g0 -s src/uxn11.c -lX11 -lutil -o bin/uxn11
15+```
16
17-By default, files are installed into `~/.local` but this can be overridden using `PREFIX`:
18+For your convenience a [Makefile](https://en.wikipedia.org/wiki/Make_(software)#Makefile) is provided.
19
20 ```sh
21-# installs files into ~/.local/bin and ~/.local/share
22-$ make install
23-
24-# installs files into /opt/uxn/bin and /opt/uxn/share
25-$ make PREFIX=/opt/uxn install
26+make run
27 ```
28
29-### Graphical
30-
31-All you need is X11.
32+You can run `make install` to build and install the files. By default, files are installed into `~/.local` but this can be overridden using `PREFIX`:
33
34 ```sh
35-cc -DNDEBUG -O2 -g0 -s src/uxn11.c -lX11 -lutil -o bin/uxn11
36+# installs files into /opt/uxn/bin and /opt/uxn/share
37+$ make PREFIX=/opt/uxn install
38 ```
39
40 ### Terminal