uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit c6c31aa81546ac2348efd4031e3130ca22e9d9a0
parent 7598f40f3086099e40cf5a777515b1444a7424ce
Author: neauoire <aliceffekt@gmail.com>
Date:   Wed, 25 Aug 2021 15:55:57 -0700

Improved README

Diffstat:
MREADME.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -6,7 +6,7 @@ An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/si ### Linux -To build the Uxn emulator, you must install [SDL2](https://wiki.libsdl.org/) for your distro. For example: +To build the Uxn emulator, you must install [SDL2](https://wiki.libsdl.org/) for your distro. If you are using a package manager: ```sh sudo pacman -Sy sdl2 # Arch @@ -20,7 +20,7 @@ Build the assembler and emulator by running the `build.sh` script. The assembler --debug # Add debug flags to compiler ``` -If you only wish to simply build the `uxncli` cli tool: +If you wish to build the emulator without graphics mode: ```sh cc src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli