From c6c31aa81546ac2348efd4031e3130ca22e9d9a0 Mon Sep 17 00:00:00 2001 From: neauoire Date: Wed, 25 Aug 2021 15:55:57 -0700 Subject: [PATCH] Improved README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e12d91d..fa14028 100644 --- 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