uxn11/README.md

85 lines
2.1 KiB
Markdown
Raw Normal View History

2022-04-05 14:42:50 -04:00
# Uxn11
2022-03-26 20:23:52 -04:00
2022-03-27 00:07:01 -04:00
An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
2022-03-26 20:23:52 -04:00
2022-03-30 13:37:47 -04:00
## Uxn11/System
This emulator's system device supports changing a stack's location to a page of memory. The default memory mapping is as follows:
- `0000-ffff`, as **RAM**.
- `10000-100ff`, as **working stack**.
- `10100-101ff`, as **return stack**.
To use the last page of ram(`0xff00`) to host the working stack:
```
#ff .System/wst DEO
```
The stack mapping is 254 bytes of data, a byte for the pointer and a byte for an error code.
2022-04-05 23:06:42 -04:00
## Building
### Graphical
2022-03-27 00:07:01 -04:00
All you need is X11.
2022-04-05 23:06:42 -04:00
```sh
2022-04-06 15:38:34 -04:00
gcc -DNDEBUG -Og -g0 -s src/uxn.c src/devices/system.c src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/devices/file.c src/devices/datetime.c src/uxn11.c -o bin/uxn11 -lX11
2022-03-27 00:07:01 -04:00
```
2022-04-05 23:06:42 -04:00
### Terminal
2022-03-27 00:07:01 -04:00
2022-03-26 21:32:46 -04:00
If you wish to build the emulator without graphics mode:
```sh
2022-04-06 15:38:34 -04:00
gcc -DNDEBUG -Og -g0 -s src/uxn.c src/devices/system.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli
2022-03-26 21:32:46 -04:00
```
2022-04-06 15:38:34 -04:00
## Usage
The first parameter is the rom file, the subsequent arguments will be accessible to the rom, via the [Console vector](https://wiki.xxiivv.com/site/varvara.html#console).
2022-04-05 23:06:42 -04:00
```sh
2022-04-06 15:38:34 -04:00
bin/uxnemu bin/polycat.rom arg1 arg2
2022-04-05 23:06:42 -04:00
```
2022-03-27 11:46:50 -04:00
## Devices
- `00` system
2022-04-05 22:31:53 -04:00
- `10` console
2022-03-28 12:51:38 -04:00
- `20` screen
2022-03-27 11:46:50 -04:00
- `30` audio(missing)
- `70` midi(missing)
2022-03-28 12:39:05 -04:00
- `80` controller
2022-04-05 22:31:53 -04:00
- `90` mouse
2022-03-28 12:51:38 -04:00
- `a0` file
2022-03-27 11:46:50 -04:00
- `c0` datetime
2022-04-05 23:06:42 -04:00
## Emulator Controls
- `F2` toggle debug
- `F4` load launcher.rom
### Buttons
- `LCTRL` A
- `LALT` B
- `LSHIFT` SEL
- `HOME` START
## Need a hand?
The following resources are a good place to start:
* [XXIIVV — uxntal](https://wiki.xxiivv.com/site/uxntal.html)
* [XXIIVV — uxntal cheatsheet](https://wiki.xxiivv.com/site/uxntal_cheatsheet.html)
* [XXIIVV — uxntal reference](https://wiki.xxiivv.com/site/uxntal_reference.html)
* [compudanzas — uxn tutorial](https://compudanzas.net/uxn_tutorial.html)
You can also find us in [`#uxn` on irc.esper.net](ircs://irc.esper.net:6697/#uxn).
2022-03-26 20:23:52 -04: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).