2021-01-29 14:17:59 -05:00
# Uxn
2021-05-26 13:02:13 -04:00
An assembler and emulator for the [Uxn stack-machine ](https://wiki.xxiivv.com/site/uxn.html ), written in ANSI C.
2021-01-29 14:35:59 -05:00
2021-09-23 16:19:02 -04:00
## Download binaries
2023-06-09 13:13:44 -04:00
Binaries are available for 64-bit x86 computers running [Linux ](https://drive.100r.co/uxn/uxn-essentials-lin64.tar.gz ), [Windows ](https://drive.100r.co/uxn/uxn-essentials-win64.zip ) and [macOS ](https://drive.100r.co/uxn/uxn-essentials-mac64.tar.gz ).
2021-09-23 16:19:02 -04:00
2021-03-22 22:04:31 -04:00
## Build
2021-02-11 21:48:45 -05:00
2021-08-27 14:00:34 -04:00
### Linux/OS X
2021-05-24 23:39:40 -04:00
2021-08-25 18:55:57 -04: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 18:53:37 -04:00
```sh
sudo pacman -Sy sdl2 # Arch
sudo apt install libsdl2-dev # Ubuntu
2021-11-29 17:24:54 -05:00
sudo xbps-install SDL2-devel # Void Linux
2021-08-29 22:38:42 -04:00
brew install sdl2 # OS X
2021-08-25 18:53:37 -04:00
```
2021-11-29 17:24:54 -05: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-11 21:48:45 -05:00
2021-03-22 22:04:31 -04:00
```sh
./build.sh
--debug # Add debug flags to compiler
2021-08-27 14:00:34 -04:00
--format # Format source code
2022-02-03 22:52:12 -05:00
--install # Copy to ~/bin
2021-02-11 21:48:45 -05:00
```
2021-08-25 18:55:57 -04:00
If you wish to build the emulator without graphics mode:
2021-08-25 18:53:37 -04:00
```sh
2023-08-08 18:31:48 -04:00
cc src/devices/datetime.c src/devices/system.c src/devices/console.c src/devices/file.c src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli
2021-08-25 18:53:37 -04:00
```
2021-05-24 23:39:40 -04:00
### Plan 9
2023-05-02 19:01:29 -04:00
To build and install the Uxn emulator on [9front ](http://9front.org/ ), via [npe ](https://git.sr.ht/~ft/npe ):
2021-05-17 18:07:20 -04:00
```rc
2023-05-02 19:01:29 -04:00
mk install
2021-05-17 18:07:20 -04:00
```
2021-05-26 13:02:13 -04:00
If the build fails on 9front because of missing headers or functions, try again after `rm -r /sys/include/npe` .
2021-05-17 18:07:20 -04:00
2021-07-27 16:13:12 -04: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-12-19 06:39:41 -05:00
If you'd like to work with the Console device in `uxnemu.exe` , run `./build.sh --console` instead: this will bring up an extra window for console I/O unless you run `uxnemu.exe` in Command Prompt or PowerShell.
2021-05-24 23:39:40 -04:00
## Getting Started
2021-08-25 18:53:37 -04:00
### Emulator
2021-06-27 13:03:09 -04:00
2021-08-25 18:53:37 -04:00
To launch a `.rom` in the emulator, point the emulator to the target rom file:
2021-05-24 23:39:40 -04:00
2021-08-25 18:53:37 -04:00
```sh
bin/uxnemu bin/piano.rom
2021-05-24 23:39:40 -04:00
```
2021-08-25 18:53:37 -04: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-24 23:39:40 -04:00
2021-08-25 18:53:37 -04:00
### Assembler
2021-05-24 23:39:40 -04:00
2021-08-25 18:53:37 -04: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 10:22:53 -04:00
2021-08-25 18:53:37 -04:00
```sh
bin/uxnasm projects/examples/demos/life.tal bin/life.rom
2021-08-16 10:22:53 -04:00
```
2021-05-25 00:31:53 -04:00
2021-06-27 13:03:09 -04: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 18:53:37 -04:00
```sh
2021-06-27 13:03:09 -04:00
uxnemu orca.rom | shim
```
2023-04-17 12:36:55 -04:00
## GUI Emulator Options
2021-09-21 16:22:58 -04:00
2023-04-17 12:36:55 -04:00
- `-2x` Force medium scale
- `-3x` Force large scale
2023-10-24 21:22:05 -04:00
- `-f` Force fullscreen mode
- `--` Force next argument to be read as ROM name. (This is useful if your ROM file is named `-v` , `-2x` , and so forth.)
2021-09-21 16:22:58 -04:00
2023-04-17 12:36:55 -04:00
## GUI Emulator Controls
2021-03-24 12:39:19 -04:00
2021-06-25 11:57:25 -04:00
- `F1` toggle zoom
- `F2` toggle debug
- `F3` capture screen
2023-08-13 21:48:32 -04:00
- `F4` reboot
- `F5` soft reboot
2023-10-24 21:22:05 -04:00
- `F11` toggle fullscreen
2023-10-25 17:16:23 -04:00
- `F12` toggle decorations
2021-03-24 12:39:19 -04:00
2023-04-17 12:36:55 -04:00
### GUI Buttons
2021-12-27 16:42:36 -05:00
- `LCTRL` A
- `LALT` B
- `LSHIFT` SEL
- `HOME` START
2021-05-25 00:23:59 -04:00
## Need a hand?
2021-01-29 14:35:59 -05:00
2022-01-10 14:20:44 -05:00
The following resources are a good place to start:
* [XXIIVV — uxntal ](https://wiki.xxiivv.com/site/uxntal.html )
* [XXIIVV — uxntal reference ](https://wiki.xxiivv.com/site/uxntal_reference.html )
* [compudanzas — uxn tutorial ](https://compudanzas.net/uxn_tutorial.html )
2022-06-07 15:14:27 -04:00
* [Fediverse — #uxn tag ](https://merveilles.town/tags/uxn )
2021-12-13 17:42:21 -05:00
## Contributing
Submit patches using [`git send-email` ](https://git-send-email.io/ ) to the [~rabbits/public-inbox mailing list ](https://lists.sr.ht/~rabbits/public-inbox ).