commit 6ef7c60
neauoire
·
2023-08-09 00:00:48 +0000 UTC
parent d25be56
Updated build instructions in README
1 files changed,
+4,
-6
+4,
-6
1@@ -9,7 +9,7 @@ An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html),
2 All you need is X11.
3
4 ```sh
5-gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/devices/file.c src/devices/datetime.c src/uxn11.c -o bin/uxn11 -lX11
6+gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/console.c src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/devices/file.c src/devices/datetime.c src/uxn11.c -o bin/uxn11 -lX11
7 ```
8
9 ### Terminal
10@@ -17,7 +17,7 @@ gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/screen.c src/
11 If you wish to build the emulator without graphics mode:
12
13 ```sh
14-gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli
15+gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/console.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli
16 ```
17
18 If do not wish to build it yourself, you can download linux binaries for [uxnasm](https://rabbits.srht.site/uxn11/bin/uxnasm), [uxncli](https://rabbits.srht.site/uxn11/bin/uxncli) and [uxn11](https://rabbits.srht.site/uxn11/bin/uxn11).
19@@ -39,16 +39,14 @@ The file device is _sandboxed_, meaning that it should not be able to read or wr
20 - `00` system
21 - `10` console
22 - `20` screen
23-- `30` audio(missing)
24-- `70` midi(missing)
25 - `80` controller
26 - `90` mouse
27-- `a0` file(sandboxed)
28+- `a0` file
29 - `c0` datetime
30
31 ## Emulator Controls
32
33-- `F2` print non-empty stacks
34+- `F2` toggle on-screen debugger
35 - `F4` load boot.rom, or reload rom
36
37 ### Buttons