├── .gitignore ├── app ├── Emulator │ ├── App │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1024.png │ │ │ │ ├── Icon-167.png │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-20@2x-1.png │ │ │ │ ├── Icon-20@2x.png │ │ │ │ ├── Icon-20@3x.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x-1.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40@2x-1.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-41.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ └── Icon-76@2x.png │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SampleCode.xcconfig │ │ └── main.m │ ├── Platform │ │ ├── MetalCanvas.h │ │ ├── MetalCanvas.m │ │ ├── MetalShaders.h │ │ ├── MetalShaders.metal │ │ ├── MetalViewController.h │ │ ├── MetalViewController.m │ │ ├── Platform.h │ │ ├── Platform.mm │ │ ├── PlatformAudio.h │ │ ├── PlatformAudio.m │ │ ├── app_entry.cpp │ │ ├── app_uxn.c │ │ ├── app_uxn.h │ │ └── emu_platform.h │ └── Roms │ │ ├── RomIndex.h │ │ ├── RomIndex.m │ │ ├── RomTableViewController.h │ │ └── RomTableViewController.m └── UxnEmulator.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── UxnEmulator.xcscheme ├── license ├── media ├── icons.fig └── polycat.gif ├── readme.md ├── roms ├── blank.rom ├── demos │ ├── automata.rom │ ├── bifurcan.rom │ ├── darena.rom │ ├── drum-rack.rom │ ├── font.rom │ ├── life.rom │ ├── musictracker.rom │ ├── neralie.rom │ ├── piano.rom │ ├── polycat.rom │ └── theme.rom ├── devices │ ├── audio.channels.rom │ ├── audio.rom │ ├── console.echo.rom │ ├── console.lib.rom │ ├── console.rom │ ├── controller.buttons.rom │ ├── controller.keys.rom │ ├── datetime.rom │ ├── file.load.rom │ ├── file.rom │ ├── file.save.rom │ ├── mouse.rom │ └── screen.rom ├── gui │ ├── animation.rom │ ├── hover.rom │ ├── label.rom │ ├── picture.rom │ ├── proportional-font.rom │ ├── shapes.rom │ └── wallpaper.rom └── index.json ├── uxn ├── .gitignore ├── LICENSE ├── README.md └── src │ ├── devices │ ├── apu.c │ ├── apu.h │ ├── ppu.c │ └── ppu.h │ ├── uxn-fast.c │ ├── uxn.c │ └── uxn.h └── vfs └── projects ├── fonts ├── atari8.uf1 ├── bbcmicro8.uf1 ├── chicago12.uf2 ├── diamond12.uf2 ├── diamond20.uf3 ├── geneva12.uf2 ├── geneva14.uf2 ├── geneva24.uf3 ├── helvetica12.uf2 ├── helvetica14.uf2 ├── helvetica24.uf3 ├── left8.uf1 ├── losangeles12.uf2 ├── newyork12.uf2 ├── newyork14.uf2 ├── newyork24.uf3 ├── orca8.uf1 ├── palatino12.uf2 ├── palatino14.uf2 ├── palatino24.uf3 ├── sans10-bold.uf2 ├── sans10-regular.uf2 ├── sapphire14.uf2 ├── sapphire19.uf3 ├── specter8.uf1 ├── terminal12.uf2 ├── times12.uf2 ├── times15.uf2 ├── times24.uf3 └── venice14.uf2 ├── pictures ├── akane2010.bit ├── ako10x10.chr ├── cibo.bit ├── cyr10x8.chr ├── dafu80x80.bit ├── daria10x10.chr ├── ergo100x0c0.bit ├── felix0cx0c.chr ├── logo1x1.bit ├── macpaint4020.bit ├── pc98.chr ├── tima2a1a.bit ├── zerotwo10x10.chr └── zerotwo2020.chr └── sounds ├── bdr1.pcm ├── bdr2.pcm ├── chat.pcm ├── cym1.pcm ├── hhat.pcm ├── kck1.pcm ├── kck2.pcm ├── ohat.pcm ├── pad1.pcm ├── pad2.pcm ├── piano.pcm ├── ride.pcm ├── saw.pcm ├── sid1.pcm ├── sid2.pcm ├── sin.pcm ├── snr1.pcm ├── snr2.pcm ├── sqr.pcm ├── sub1.pcm ├── syn1.pcm ├── syn2.pcm ├── tri.pcm └── violin.pcm /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | xcuserdata 4 | -------------------------------------------------------------------------------- /app/Emulator/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/AppDelegate.h -------------------------------------------------------------------------------- /app/Emulator/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/AppDelegate.m -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-41.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /app/Emulator/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/Emulator/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/Emulator/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /app/Emulator/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/Info.plist -------------------------------------------------------------------------------- /app/Emulator/App/SampleCode.xcconfig: -------------------------------------------------------------------------------- 1 | SAMPLE_CODE_DISAMBIGUATOR=${DEVELOPMENT_TEAM} 2 | -------------------------------------------------------------------------------- /app/Emulator/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/App/main.m -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalCanvas.h -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalCanvas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalCanvas.m -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalShaders.h -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalShaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalShaders.metal -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalViewController.h -------------------------------------------------------------------------------- /app/Emulator/Platform/MetalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/MetalViewController.m -------------------------------------------------------------------------------- /app/Emulator/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/Platform.h -------------------------------------------------------------------------------- /app/Emulator/Platform/Platform.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/Platform.mm -------------------------------------------------------------------------------- /app/Emulator/Platform/PlatformAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/PlatformAudio.h -------------------------------------------------------------------------------- /app/Emulator/Platform/PlatformAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/PlatformAudio.m -------------------------------------------------------------------------------- /app/Emulator/Platform/app_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/app_entry.cpp -------------------------------------------------------------------------------- /app/Emulator/Platform/app_uxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/app_uxn.c -------------------------------------------------------------------------------- /app/Emulator/Platform/app_uxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/app_uxn.h -------------------------------------------------------------------------------- /app/Emulator/Platform/emu_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Platform/emu_platform.h -------------------------------------------------------------------------------- /app/Emulator/Roms/RomIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Roms/RomIndex.h -------------------------------------------------------------------------------- /app/Emulator/Roms/RomIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Roms/RomIndex.m -------------------------------------------------------------------------------- /app/Emulator/Roms/RomTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Roms/RomTableViewController.h -------------------------------------------------------------------------------- /app/Emulator/Roms/RomTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/Emulator/Roms/RomTableViewController.m -------------------------------------------------------------------------------- /app/UxnEmulator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/UxnEmulator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/UxnEmulator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/UxnEmulator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/UxnEmulator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/UxnEmulator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/UxnEmulator.xcodeproj/xcshareddata/xcschemes/UxnEmulator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/app/UxnEmulator.xcodeproj/xcshareddata/xcschemes/UxnEmulator.xcscheme -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/license -------------------------------------------------------------------------------- /media/icons.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/media/icons.fig -------------------------------------------------------------------------------- /media/polycat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/media/polycat.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/readme.md -------------------------------------------------------------------------------- /roms/blank.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/blank.rom -------------------------------------------------------------------------------- /roms/demos/automata.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/automata.rom -------------------------------------------------------------------------------- /roms/demos/bifurcan.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/bifurcan.rom -------------------------------------------------------------------------------- /roms/demos/darena.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/darena.rom -------------------------------------------------------------------------------- /roms/demos/drum-rack.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/drum-rack.rom -------------------------------------------------------------------------------- /roms/demos/font.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/font.rom -------------------------------------------------------------------------------- /roms/demos/life.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/life.rom -------------------------------------------------------------------------------- /roms/demos/musictracker.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/musictracker.rom -------------------------------------------------------------------------------- /roms/demos/neralie.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/neralie.rom -------------------------------------------------------------------------------- /roms/demos/piano.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/piano.rom -------------------------------------------------------------------------------- /roms/demos/polycat.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/polycat.rom -------------------------------------------------------------------------------- /roms/demos/theme.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/demos/theme.rom -------------------------------------------------------------------------------- /roms/devices/audio.channels.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/audio.channels.rom -------------------------------------------------------------------------------- /roms/devices/audio.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/audio.rom -------------------------------------------------------------------------------- /roms/devices/console.echo.rom: -------------------------------------------------------------------------------- 1 | !7 -------------------------------------------------------------------------------- /roms/devices/console.lib.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/console.lib.rom -------------------------------------------------------------------------------- /roms/devices/console.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/console.rom -------------------------------------------------------------------------------- /roms/devices/controller.buttons.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/controller.buttons.rom -------------------------------------------------------------------------------- /roms/devices/controller.keys.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/controller.keys.rom -------------------------------------------------------------------------------- /roms/devices/datetime.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/datetime.rom -------------------------------------------------------------------------------- /roms/devices/file.load.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/file.load.rom -------------------------------------------------------------------------------- /roms/devices/file.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/file.rom -------------------------------------------------------------------------------- /roms/devices/file.save.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/file.save.rom -------------------------------------------------------------------------------- /roms/devices/mouse.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/mouse.rom -------------------------------------------------------------------------------- /roms/devices/screen.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/devices/screen.rom -------------------------------------------------------------------------------- /roms/gui/animation.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/animation.rom -------------------------------------------------------------------------------- /roms/gui/hover.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/hover.rom -------------------------------------------------------------------------------- /roms/gui/label.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/label.rom -------------------------------------------------------------------------------- /roms/gui/picture.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/picture.rom -------------------------------------------------------------------------------- /roms/gui/proportional-font.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/proportional-font.rom -------------------------------------------------------------------------------- /roms/gui/shapes.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/shapes.rom -------------------------------------------------------------------------------- /roms/gui/wallpaper.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/gui/wallpaper.rom -------------------------------------------------------------------------------- /roms/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/roms/index.json -------------------------------------------------------------------------------- /uxn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/.gitignore -------------------------------------------------------------------------------- /uxn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/LICENSE -------------------------------------------------------------------------------- /uxn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/README.md -------------------------------------------------------------------------------- /uxn/src/devices/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/devices/apu.c -------------------------------------------------------------------------------- /uxn/src/devices/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/devices/apu.h -------------------------------------------------------------------------------- /uxn/src/devices/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/devices/ppu.c -------------------------------------------------------------------------------- /uxn/src/devices/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/devices/ppu.h -------------------------------------------------------------------------------- /uxn/src/uxn-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/uxn-fast.c -------------------------------------------------------------------------------- /uxn/src/uxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/uxn.c -------------------------------------------------------------------------------- /uxn/src/uxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/uxn/src/uxn.h -------------------------------------------------------------------------------- /vfs/projects/fonts/atari8.uf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/atari8.uf1 -------------------------------------------------------------------------------- /vfs/projects/fonts/bbcmicro8.uf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/bbcmicro8.uf1 -------------------------------------------------------------------------------- /vfs/projects/fonts/chicago12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/chicago12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/diamond12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/diamond12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/diamond20.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/diamond20.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/geneva12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/geneva12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/geneva14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/geneva14.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/geneva24.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/geneva24.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/helvetica12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/helvetica12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/helvetica14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/helvetica14.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/helvetica24.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/helvetica24.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/left8.uf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/left8.uf1 -------------------------------------------------------------------------------- /vfs/projects/fonts/losangeles12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/losangeles12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/newyork12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/newyork12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/newyork14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/newyork14.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/newyork24.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/newyork24.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/orca8.uf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/orca8.uf1 -------------------------------------------------------------------------------- /vfs/projects/fonts/palatino12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/palatino12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/palatino14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/palatino14.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/palatino24.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/palatino24.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/sans10-bold.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/sans10-bold.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/sans10-regular.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/sans10-regular.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/sapphire14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/sapphire14.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/sapphire19.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/sapphire19.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/specter8.uf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/specter8.uf1 -------------------------------------------------------------------------------- /vfs/projects/fonts/terminal12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/terminal12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/times12.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/times12.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/times15.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/times15.uf2 -------------------------------------------------------------------------------- /vfs/projects/fonts/times24.uf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/times24.uf3 -------------------------------------------------------------------------------- /vfs/projects/fonts/venice14.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/fonts/venice14.uf2 -------------------------------------------------------------------------------- /vfs/projects/pictures/akane2010.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/akane2010.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/ako10x10.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/ako10x10.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/cibo.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/cibo.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/cyr10x8.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/cyr10x8.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/dafu80x80.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/dafu80x80.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/daria10x10.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/daria10x10.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/ergo100x0c0.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/ergo100x0c0.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/felix0cx0c.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/felix0cx0c.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/logo1x1.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/logo1x1.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/macpaint4020.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/macpaint4020.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/pc98.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/pc98.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/tima2a1a.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/tima2a1a.bit -------------------------------------------------------------------------------- /vfs/projects/pictures/zerotwo10x10.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/zerotwo10x10.chr -------------------------------------------------------------------------------- /vfs/projects/pictures/zerotwo2020.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/pictures/zerotwo2020.chr -------------------------------------------------------------------------------- /vfs/projects/sounds/bdr1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/bdr1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/bdr2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/bdr2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/chat.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/chat.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/cym1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/cym1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/hhat.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/hhat.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/kck1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/kck1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/kck2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/kck2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/ohat.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/ohat.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/pad1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/pad1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/pad2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/pad2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/piano.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/piano.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/ride.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/ride.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/saw.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/saw.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/sid1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/sid1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/sid2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/sid2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/sin.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/sin.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/snr1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/snr1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/snr2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/snr2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/sqr.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/sqr.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/sub1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/sub1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/syn1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/syn1.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/syn2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/syn2.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/tri.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/tri.pcm -------------------------------------------------------------------------------- /vfs/projects/sounds/violin.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/uxn-ios/HEAD/vfs/projects/sounds/violin.pcm --------------------------------------------------------------------------------