├── .gitignore ├── Makefile ├── Unununium.app └── Contents │ ├── Info.plist │ └── Resources │ └── Unununium.icns ├── audio.c ├── audio.h ├── board-BAT.c ├── board-VII.c ├── board-V_X.c ├── board-W60.c ├── board-WAL.c ├── board-dummy.c ├── board.c ├── board.h ├── config.example ├── dialog-cocoa.m ├── dialog.h ├── disas.c ├── disas.h ├── emu.c ├── emu.h ├── i2c-bus.c ├── i2c-eeprom.c ├── i2c.h ├── io.c ├── io.h ├── major.c ├── platform-sdl.c ├── platform.h ├── render-gl.c ├── render-soft.c ├── render.c ├── render.h ├── timer.c ├── timer.h ├── types.h ├── un-disas.c ├── un-dump.c ├── uuu-sdl.c ├── uuu.xcf ├── video.c └── video.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | un-disas 3 | uuu-sdl 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/Makefile -------------------------------------------------------------------------------- /Unununium.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/Unununium.app/Contents/Info.plist -------------------------------------------------------------------------------- /Unununium.app/Contents/Resources/Unununium.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/Unununium.app/Contents/Resources/Unununium.icns -------------------------------------------------------------------------------- /audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/audio.c -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/audio.h -------------------------------------------------------------------------------- /board-BAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-BAT.c -------------------------------------------------------------------------------- /board-VII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-VII.c -------------------------------------------------------------------------------- /board-V_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-V_X.c -------------------------------------------------------------------------------- /board-W60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-W60.c -------------------------------------------------------------------------------- /board-WAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-WAL.c -------------------------------------------------------------------------------- /board-dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board-dummy.c -------------------------------------------------------------------------------- /board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board.c -------------------------------------------------------------------------------- /board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/board.h -------------------------------------------------------------------------------- /config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/config.example -------------------------------------------------------------------------------- /dialog-cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/dialog-cocoa.m -------------------------------------------------------------------------------- /dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/dialog.h -------------------------------------------------------------------------------- /disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/disas.c -------------------------------------------------------------------------------- /disas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/disas.h -------------------------------------------------------------------------------- /emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/emu.c -------------------------------------------------------------------------------- /emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/emu.h -------------------------------------------------------------------------------- /i2c-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/i2c-bus.c -------------------------------------------------------------------------------- /i2c-eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/i2c-eeprom.c -------------------------------------------------------------------------------- /i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/i2c.h -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/io.c -------------------------------------------------------------------------------- /io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/io.h -------------------------------------------------------------------------------- /major.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/major.c -------------------------------------------------------------------------------- /platform-sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/platform-sdl.c -------------------------------------------------------------------------------- /platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/platform.h -------------------------------------------------------------------------------- /render-gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/render-gl.c -------------------------------------------------------------------------------- /render-soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/render-soft.c -------------------------------------------------------------------------------- /render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/render.c -------------------------------------------------------------------------------- /render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/render.h -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/timer.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/types.h -------------------------------------------------------------------------------- /un-disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/un-disas.c -------------------------------------------------------------------------------- /un-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/un-dump.c -------------------------------------------------------------------------------- /uuu-sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/uuu-sdl.c -------------------------------------------------------------------------------- /uuu.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/uuu.xcf -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/video.c -------------------------------------------------------------------------------- /video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RebeccaRGB/unununium/HEAD/video.h --------------------------------------------------------------------------------