name mode size
..
bdr1.pcm 100644 8.19kB
bdr2.pcm 100644 8.19kB
chat.pcm 100644 8.19kB
cym1.pcm 100644 8.19kB
hhat.pcm 100644 8.19kB
kck1.pcm 100644 8.19kB
kck2.pcm 100644 8.19kB
ohat.pcm 100644 4.1kB
pad1.pcm 100644 512B
pad2.pcm 100644 512B
piano.pcm 100644 256B
ride.pcm 100644 8.19kB
saw.pcm 100644 256B
sid1.pcm 100644 8.19kB
sid2.pcm 100644 8.19kB
sin.pcm 100644 256B
snr1.pcm 100644 4.1kB
snr2.pcm 100644 4.1kB
sqr.pcm 100644 256B
sub1.pcm 100644 8.19kB
syn1.pcm 100644 512B
syn2.pcm 100644 512B
tri.pcm 100644 256B
violin.pcm 100644 256B
README.md
# Uxn An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C. ## Build ### Linux To build the Uxn emulator, you must have [SDL2](https://wiki.libsdl.org/). ```sh ./build.sh --debug # Add debug flags to compiler ``` ### Plan 9 To build the Uxn emulator on [9front](http://9front.org/), via [npe](https://git.sr.ht/~ft/npe): ```rc mk ``` If the build fails on 9front because of missing headers or functions, try again after `rm -r /sys/include/npe`. ## 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 ``` The following command will create an Uxn-compatible rom from an [uxambly file](https://wiki.xxiivv.com/site/uxambly.html), point to a different usm file in `/projects` to assemble a different rom. ``` bin/uxnasm projects/examples/demos/life.usm bin/life.rom ``` 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](https://sr.ht/~rabbits/uxn/sources). ## Emulator Controls - `ctrl+h` toggle inspector - `alt+h` toggle zoom ## Need a hand? Find us in `#uxn`, on irc.esper.net