Added TODO

This commit is contained in:
neauoire 2022-03-27 08:46:50 -07:00
parent ceb7bfff0b
commit 7d42770957
1 changed files with 12 additions and 2 deletions

View File

@ -2,8 +2,6 @@
An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C. An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
More docs coming soon.
## Graphical ## Graphical
All you need is X11. All you need is X11.
@ -20,6 +18,18 @@ If you wish to build the emulator without graphics mode:
cc src/devices/datetime.c src/devices/system.c src/devices/file.c src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli cc src/devices/datetime.c src/devices/system.c src/devices/file.c src/uxn.c -DNDEBUG -Os -g0 -s src/uxncli.c -o bin/uxncli
``` ```
## Devices
- `00` system
- `10` console(partial)
- `20` screen
- `30` audio(missing)
- `70` midi(missing)
- `80` controller(partial)
- `90` mouse
- `a0` file(missing)
- `c0` datetime
## Contributing ## 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). 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).