Go to file
neauoire a593db30f7 Use the file device load for roms 2022-03-28 11:03:02 -07:00
etc Added timer 2022-03-27 19:10:32 -07:00
src Use the file device load for roms 2022-03-28 11:03:02 -07:00
.clang-format Init 2022-03-26 17:23:52 -07:00
.gitignore Init 2022-03-26 17:23:52 -07:00
LICENSE Init 2022-03-26 17:23:52 -07:00
README.md Use the file device load for roms 2022-03-28 11:03:02 -07:00
build.sh Use the file device load for roms 2022-03-28 11:03:02 -07:00

README.md

Uxn

An emulator for the Uxn stack-machine, written in ANSI C.

Graphical

All you need is X11.

gcc 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 -D_POSIX_C_SOURCE=199309L -DNDEBUG -Os -g0 -s -o bin/uxn11 -lX11

Terminal

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

Devices

  • 00 system
  • 10 console(partial)
  • 20 screen
  • 30 audio(missing)
  • 70 midi(missing)
  • 80 controller
  • 90 mouse(partial)
  • a0 file
  • c0 datetime

Contributing

Submit patches using git send-email to the ~rabbits/public-inbox mailing list.