gitextract_m0nciqnm/ ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── assets/ │ ├── NX App Design.pxm │ ├── NX Logo.sketch │ ├── characters.pxm │ ├── fonts.pxm │ ├── old/ │ │ ├── App Icon.sketch │ │ ├── background_designer_sketch.pxm │ │ ├── character_designer_sketch.pxm │ │ ├── console_pixel.pxm │ │ ├── logo.pxm │ │ └── mobile_app_icon.pxm │ └── overlay.nx ├── core/ │ ├── accessories/ │ │ ├── disk_drive.c │ │ └── disk_drive.h │ ├── boot_intro.c │ ├── boot_intro.h │ ├── core.c │ ├── core.h │ ├── core_delegate.c │ ├── core_delegate.h │ ├── core_stats.c │ ├── core_stats.h │ ├── datamanager/ │ │ ├── data_manager.c │ │ └── data_manager.h │ ├── interpreter/ │ │ ├── charsets.c │ │ ├── charsets.h │ │ ├── cmd_audio.c │ │ ├── cmd_audio.h │ │ ├── cmd_background.c │ │ ├── cmd_background.h │ │ ├── cmd_control.c │ │ ├── cmd_control.h │ │ ├── cmd_data.c │ │ ├── cmd_data.h │ │ ├── cmd_files.c │ │ ├── cmd_files.h │ │ ├── cmd_io.c │ │ ├── cmd_io.h │ │ ├── cmd_maths.c │ │ ├── cmd_maths.h │ │ ├── cmd_memory.c │ │ ├── cmd_memory.h │ │ ├── cmd_screen.c │ │ ├── cmd_screen.h │ │ ├── cmd_sprites.c │ │ ├── cmd_sprites.h │ │ ├── cmd_strings.c │ │ ├── cmd_strings.h │ │ ├── cmd_subs.c │ │ ├── cmd_subs.h │ │ ├── cmd_text.c │ │ ├── cmd_text.h │ │ ├── cmd_variables.c │ │ ├── cmd_variables.h │ │ ├── data.c │ │ ├── data.h │ │ ├── error.c │ │ ├── error.h │ │ ├── interpreter.c │ │ ├── interpreter.h │ │ ├── interpreter_config.h │ │ ├── interpreter_utils.c │ │ ├── interpreter_utils.h │ │ ├── labels.c │ │ ├── labels.h │ │ ├── rcstring.c │ │ ├── rcstring.h │ │ ├── string_utils.c │ │ ├── string_utils.h │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenizer.c │ │ ├── tokenizer.h │ │ ├── value.c │ │ ├── value.h │ │ ├── variables.c │ │ └── variables.h │ ├── libraries/ │ │ ├── audio_lib.c │ │ ├── audio_lib.h │ │ ├── default_characters.c │ │ ├── default_characters.h │ │ ├── sprites_lib.c │ │ ├── sprites_lib.h │ │ ├── startup_sequence.c │ │ ├── startup_sequence.h │ │ ├── text_lib.c │ │ └── text_lib.h │ ├── machine/ │ │ ├── audio_chip.c │ │ ├── audio_chip.h │ │ ├── io_chip.h │ │ ├── machine.c │ │ ├── machine.h │ │ ├── video_chip.c │ │ └── video_chip.h │ └── overlay/ │ ├── overlay.c │ ├── overlay.h │ ├── overlay_data.c │ └── overlay_data.h ├── docs/ │ ├── license.txt │ ├── manual.html │ └── readme.txt ├── extras/ │ └── LowRes NX.sublime-syntax ├── libretro/ │ ├── libretro.h │ ├── libretro_main.c │ └── libretro_main.h ├── platform/ │ ├── GameShell/ │ │ ├── README.md │ │ └── home/ │ │ └── cpi/ │ │ ├── apps/ │ │ │ └── Menu/ │ │ │ └── 55_LowRes NX/ │ │ │ └── action.config │ │ └── games/ │ │ └── LowResNX/ │ │ ├── LowRes Galaxy 2 (1.5).nx │ │ └── Star Scroller 1.2.nx │ ├── LibRetro/ │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── jni/ │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ └── link.T │ ├── Linux/ │ │ ├── README.md │ │ └── makefile │ ├── Windows/ │ │ ├── LowRes NX Win/ │ │ │ ├── LowRes NX Win.rc │ │ │ ├── LowRes NX Win.vcxproj │ │ │ ├── LowRes NX Win.vcxproj.filters │ │ │ ├── resource.h │ │ │ └── resource1.h │ │ └── LowRes NX Win.sln │ ├── iOS/ │ │ ├── LowRes NX iOS/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── CoreWrapper.swift │ │ │ ├── Info.plist │ │ │ ├── LowResNX-Bridging-Header.h │ │ │ ├── LowResNXView.swift │ │ │ └── ViewController.swift │ │ ├── LowRes NX iOS.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── program.nx │ ├── macOS/ │ │ ├── LowRes NX macOS/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── LowRes_NX_macOS_SDL.entitlements │ │ └── LowRes NX macOS.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── web/ │ ├── README.md │ ├── embed/ │ │ ├── package/ │ │ │ ├── LowResNX120.js │ │ │ ├── LowResNX120.wasm │ │ │ ├── index.html │ │ │ └── program.nx │ │ └── readme.txt │ └── makefile ├── programs/ │ ├── Gfx Designer 2.0.nx │ ├── LowRes Adventure 1.1.nx │ ├── LowRes Galaxy 2 (1.5).nx │ ├── Sound Composer 1.5.nx │ └── Star Scroller 1.2.nx ├── programs test/ │ ├── BG Scroll.nx │ ├── Crazy Text.nx │ ├── Demo 0.5.nx │ ├── Files.nx │ ├── Scrolling Map 0.3.nx │ ├── Slide Show 0.4.nx │ ├── Sprites with Background 0.3.nx │ ├── Subs 1.nx │ ├── Subs 2.nx │ ├── drawing.nx │ ├── gamepad.nx │ ├── hello world.nx │ ├── sprite collision.nx │ └── touch.nx ├── scripts/ │ ├── export_characters.py │ └── export_characters_hex.py └── sdl/ ├── config.h ├── dev_menu.c ├── dev_menu.h ├── dev_menu_data.h ├── main.c ├── main.h ├── runner.c ├── runner.h ├── screenshot.c ├── screenshot.h ├── sdl_include.h ├── settings.c ├── settings.h ├── stb_image_write.h ├── system_paths.c ├── system_paths.h ├── utils.c └── utils.h