2021-01-29 19:17:59 +00:00
# Uxn
2021-05-26 17:02:13 +00:00
An assembler and emulator for the [Uxn stack-machine ](https://wiki.xxiivv.com/site/uxn.html ), written in ANSI C.
2021-01-29 19:35:59 +00:00
2021-03-23 02:04:31 +00:00
## Build
2021-02-12 02:48:45 +00:00
2021-08-27 18:00:34 +00:00
### Linux/OS X
2021-05-25 03:39:40 +00:00
2021-08-25 22:55:57 +00:00
To build the Uxn emulator, you must install [SDL2 ](https://wiki.libsdl.org/ ) for your distro. If you are using a package manager:
2021-08-25 22:53:37 +00:00
```sh
sudo pacman -Sy sdl2 # Arch
sudo apt install libsdl2-dev # Ubuntu
2021-08-30 02:38:42 +00:00
brew install sdl2 # OS X
2021-08-25 22:53:37 +00:00
```
Build the assembler and emulator by running the `build.sh` script. The assembler(`uxnasm`) and emulator(`uxnemu`) are created in the `/bin` folder.
2021-02-12 02:48:45 +00:00
2021-03-23 02:04:31 +00:00
```sh
./build.sh
--debug # Add debug flags to compiler
2021-08-27 18:00:34 +00:00
--format # Format source code
2021-02-12 02:48:45 +00:00
```
2021-08-25 22:55:57 +00:00
If you wish to build the emulator without graphics mode:
2021-08-25 22:53:37 +00:00
```sh
cc src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli
```
2021-05-25 03:39:40 +00:00
### Plan 9
2021-05-17 22:15:40 +00:00
To build the Uxn emulator on [9front ](http://9front.org/ ), via [npe ](https://git.sr.ht/~ft/npe ):
2021-05-17 22:07:20 +00:00
```rc
mk
```
2021-05-26 17:02:13 +00:00
If the build fails on 9front because of missing headers or functions, try again after `rm -r /sys/include/npe` .
2021-05-17 22:07:20 +00:00
2021-07-27 20:13:12 +00:00
### Windows
Uxn can be built on Windows with [MSYS2 ](https://www.msys2.org/ ). Install by downloading from their website or with Chocolatey with `choco install msys2` . In the MSYS shell, type:
```sh
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
```
2021-05-25 03:39:40 +00:00
## Getting Started
2021-08-25 22:53:37 +00:00
### Emulator
2021-06-27 17:03:09 +00:00
2021-08-25 22:53:37 +00:00
To launch a `.rom` in the emulator, point the emulator to the target rom file:
2021-05-25 03:39:40 +00:00
2021-08-25 22:53:37 +00:00
```sh
bin/uxnemu bin/piano.rom
2021-05-25 03:39:40 +00:00
```
2021-08-25 22:53:37 +00:00
You can also use the emulator without graphics by using `uxncli` . You can find additional roms [here ](https://sr.ht/~rabbits/uxn/sources ), you can find prebuilt rom files [here ](https://itch.io/c/248074/uxn-roms ).
2021-05-25 03:39:40 +00:00
2021-08-25 22:53:37 +00:00
### Assembler
2021-05-25 03:39:40 +00:00
2021-08-25 22:53:37 +00:00
The following command will create an Uxn-compatible rom from an [uxntal file ](https://wiki.xxiivv.com/site/uxntal.html ). Point the assembler to a `.tal` file, followed by and the rom name:
2021-08-16 14:22:53 +00:00
2021-08-25 22:53:37 +00:00
```sh
bin/uxnasm projects/examples/demos/life.tal bin/life.rom
2021-08-16 14:22:53 +00:00
```
2021-05-25 04:31:53 +00:00
2021-06-27 17:03:09 +00:00
### 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 ](https://git.sr.ht/~rabbits/shim ).
2021-08-25 22:53:37 +00:00
```sh
2021-06-27 17:03:09 +00:00
uxnemu orca.rom | shim
```
2021-03-24 16:39:19 +00:00
## Emulator Controls
2021-06-25 15:57:25 +00:00
- `F1` toggle zoom
- `F2` toggle debug
- `F3` capture screen
2021-03-24 16:39:19 +00:00
2021-05-25 04:23:59 +00:00
## Need a hand?
2021-01-29 19:35:59 +00:00
2021-05-25 04:23:59 +00:00
Find us in `#uxn` , on irc.esper.net