uxn/README.md

56 lines
1.2 KiB
Markdown
Raw Normal View History

2021-01-29 19:17:59 +00:00
# Uxn
2021-05-01 16:59:57 +00:00
An [8-bit stack-based computer](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-05-25 03:39:40 +00:00
### Linux
2021-05-25 04:23:59 +00:00
To build the Uxn emulator, you must have [SDL2](https://wiki.libsdl.org/).
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
--cli # Run rom without graphics
2021-02-12 02:48:45 +00:00
```
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
```
If the build fails on 9front because of missing headers or functions,
try again after `rm -r /sys/include/npe`.
2021-05-25 03:39:40 +00:00
## Getting Started
2021-05-25 04:23:59 +00:00
Begin by building the assembler and emulator by running the build script. The assembler(`uxnasm`) and emulator(`uxnemu`) are created in the `bin` folder.
2021-05-25 03:39:40 +00:00
```
./build.sh
```
2021-05-25 04:23:59 +00:00
This example will create the `life.rom` from the `life.usm` uxambly file, point to a different usm file to assemble a different rom. You can find additional roms [here](https://sr.ht/~rabbits/uxn/sources). To create a rom, from a [usm file](https://wiki.xxiivv.com/site/uxambly.html), use the following command:
2021-05-25 03:39:40 +00:00
```
bin/uxnasm projects/demos/life.usm bin/life.rom
```
To launch the rom:
```
bin/uxnemu bin/life.rom
```
2021-03-24 16:39:19 +00:00
## Emulator Controls
- `ctrl+h` toggle debugger
- `alt+h` toggle zoom
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