Browse code

Improved README

neauoire authored on 25/08/2021 22:55:57
Showing 1 changed files
... ...
@@ -6,7 +6,7 @@ An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/si
6 6
 
7 7
 ### Linux 
8 8
 
9
-To build the Uxn emulator, you must install [SDL2](https://wiki.libsdl.org/) for your distro. For example:
9
+To build the Uxn emulator, you must install [SDL2](https://wiki.libsdl.org/) for your distro. If you are using a package manager:
10 10
 
11 11
 ```sh
12 12
 sudo pacman -Sy sdl2             # Arch
... ...
@@ -20,7 +20,7 @@ Build the assembler and emulator by running the `build.sh` script. The assembler
20 20
 	--debug # Add debug flags to compiler
21 21
 ```
22 22
 
23
-If you only wish to simply build the `uxncli` cli tool:
23
+If you wish to build the emulator without graphics mode:
24 24
 
25 25
 ```sh
26 26
 cc src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli