Go to file
neauoire fffbf28805 Modified shebang in build.sh 2021-08-18 16:23:15 -07:00
etc Fixed issue with null vectors 2021-08-17 19:30:34 -07:00
projects Optimized shapes 2021-08-18 11:40:51 -07:00
src Minor optimisation to uxnasm 2021-08-18 07:45:51 +01:00
.clang-format * 2021-01-30 14:25:48 -08:00
.gitignore Added snarf buffer to ignores 2021-07-22 11:34:59 -07:00
LICENSE init 2021-01-29 11:17:59 -08:00
README.md Optimized gui examples 2021-08-18 11:14:29 -07:00
build.sh Modified shebang in build.sh 2021-08-18 16:23:15 -07:00
mkfile fix Plan 9 build again 2021-06-27 17:23:27 +02:00

README.md

Uxn

An assembler and emulator for the Uxn stack-machine, written in ANSI C.

Build

Linux

To build the Uxn emulator, you must have SDL2.

./build.sh 
	--debug # Add debug flags to compiler

Plan 9

To build the Uxn emulator on 9front, via npe:

mk

If the build fails on 9front because of missing headers or functions, try again after rm -r /sys/include/npe.

Windows

Uxn can be built on Windows with MSYS2. Install by downloading from their website or with Chocolatey with choco install msys2. In the MSYS shell, type:

pacman -S git mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-SDL2
export PATH="${PATH}:/mingw64/bin"
git clone https://git.sr.ht/~rabbits/uxn
cd uxn
./build.sh

Getting Started

Begin by building the assembler and emulator by running the build script. The assembler(uxnasm) and emulator(uxnemu) are created in the /bin folder.

./build.sh

Assembler

The following command will create an Uxn-compatible rom from an uxntal file. Point the assembler to a .tal file in /projects to assemble a rom.

bin/uxnasm projects/examples/demos/life.tal bin/life.rom

Emulator

To start the rom, point the emulator to the newly created rom:

bin/uxnemu bin/life.rom

You can also use the emulator without graphics by using uxncli. You can find additional roms here. If you only wish to build uxncli

cc src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli

I/O

You can send events from Uxn to another application, or another instance of uxn, with the Unix pipe. For a companion application that translates notes data into midi, see the shim.

uxnemu orca.rom | shim

Emulator Controls

  • F1 toggle zoom
  • F2 toggle debug
  • F3 capture screen

Need a hand?

Find us in #uxn, on irc.esper.net