├── .editorconfig ├── .gitattributes ├── bin ├── cynthcart.prg ├── cynthcartRawCompressed.bin ├── cynthcartUncompressed.bin ├── cynthcart_cartridge_ROM.bin ├── cynthcart_emu.prg ├── cynthcart_kerberos.prg ├── cynthcart_symphony.prg ├── debug │ └── cynthcart151_MIDI_ANALYZER.prg ├── loaderSymbolList.txt ├── version2.0.0_RELEASE │ ├── cynthcart2.0.prg │ ├── cynthcart2.0_emu.prg │ ├── cynthcart2.0_kerberos.prg │ └── cynthcart2.0_symphony.prg └── version2.0.1_RELEASE │ ├── cynthcart2.0.1.pdf │ ├── cynthcart2.0.1_emu.prg │ ├── cynthcart2.0.1_kerberos.prg │ ├── cynthcart2.0.1_symphony.prg │ └── loader2.0.1.bin ├── images ├── cynth_screenshot_help.png ├── cynth_screenshot_help_2x.png ├── cynth_screenshot_main.png ├── cynth_screenshot_main_2x.png ├── cynth_screenshot_sidedit.png ├── cynth_screenshot_sidedit_2x.png ├── moreScreenshots │ ├── cynth_screen_main.png │ └── cynth_screen_main2.0.png ├── other │ └── mp3playerImage.png └── photos │ ├── 2016-05-10 13.31.28.jpg │ ├── c64_midi_sidcart_sm.jpg │ ├── cynthOverlayKeyboard.jpg │ └── cynth_midi_closeup.jpg ├── makeCynthcart.bat ├── manual ├── cynthcart2.0.1.odt ├── cynthcart2.0.1.pdf ├── cynthcart2.0.1_5x7.odt ├── cynthcart2.0.1_5x7.pdf ├── keyboardReferenceCharts │ ├── cynthcartCommandChart1.pdf │ ├── cynthcartCommandChart2.pdf │ └── cynthcartVisualKBReference.png └── oldManuals │ ├── cynthcart.odt │ ├── cynthcart2.0.odt │ ├── cynthcart2.0.pdf │ ├── cynthcart5x7_1.2.4c.odt │ ├── cynthcart5x7_1.2.4c.pdf │ ├── cynthcart_1.2.4 (unfinished).txt │ └── cynthcart_website_reference_old.txt ├── other ├── gertsModifiedVersion │ └── cynthc_151b_+MOD_RELEASE_VERSION.prg ├── notes │ ├── MIDI controller numbers.txt │ ├── base_c64_midi_interfaces [Codebase 64 wiki].html │ ├── base_c64_midi_interfaces [Codebase 64 wiki]_files │ │ ├── c64codebase_v2.png │ │ ├── css.php │ │ ├── ga.js │ │ ├── indexer.php │ │ └── js.php │ ├── c64_keyboard_layout.jpg │ └── midi_detect_notes.txt └── oldVersionsAndFiles │ ├── cynthcart151.prg │ ├── cynthcart151b_8580-custom.prg │ ├── cynthcart151c.prg │ ├── cynthcart152_comp.prg │ ├── eprom.cmp │ ├── loader2.asm │ ├── loader2.prg │ ├── sa_uncrunch_orig.asm │ ├── sa_uncrunch_orig.bin │ ├── sa_uncrunch_orig.prg │ └── v1.5.1c.zip ├── readme.md ├── source ├── cynthcart.asm ├── cynthdata.asm ├── cynthdisplay.asm ├── cynthkeyboard.asm ├── cynthkeycommands.asm ├── cynthloader.asm ├── cynthmidi.asm ├── cynthmidi_dummy.asm ├── cynthmidirecv.asm ├── cynthmodulation.asm ├── cynthsetshow.asm ├── cynthsidedit.asm ├── cynthsound.asm ├── cynthsubroutines.asm ├── cynthtuning.asm └── cynthvars.asm └── tools ├── dasm.exe ├── pucrunch.exe └── pucrunchExtras ├── oldBatchFiles ├── cruncnth.bat ├── crunsc_b.bat ├── crunscrp.bat ├── makeppt.bat └── pp2.bat ├── ppt.asm ├── pucrunch.exe └── sa_uncrunch.asm /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/.gitattributes -------------------------------------------------------------------------------- /bin/cynthcart.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcart.prg -------------------------------------------------------------------------------- /bin/cynthcartRawCompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcartRawCompressed.bin -------------------------------------------------------------------------------- /bin/cynthcartUncompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcartUncompressed.bin -------------------------------------------------------------------------------- /bin/cynthcart_cartridge_ROM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcart_cartridge_ROM.bin -------------------------------------------------------------------------------- /bin/cynthcart_emu.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcart_emu.prg -------------------------------------------------------------------------------- /bin/cynthcart_kerberos.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcart_kerberos.prg -------------------------------------------------------------------------------- /bin/cynthcart_symphony.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/cynthcart_symphony.prg -------------------------------------------------------------------------------- /bin/debug/cynthcart151_MIDI_ANALYZER.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/debug/cynthcart151_MIDI_ANALYZER.prg -------------------------------------------------------------------------------- /bin/loaderSymbolList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/loaderSymbolList.txt -------------------------------------------------------------------------------- /bin/version2.0.0_RELEASE/cynthcart2.0.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.0_RELEASE/cynthcart2.0.prg -------------------------------------------------------------------------------- /bin/version2.0.0_RELEASE/cynthcart2.0_emu.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.0_RELEASE/cynthcart2.0_emu.prg -------------------------------------------------------------------------------- /bin/version2.0.0_RELEASE/cynthcart2.0_kerberos.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.0_RELEASE/cynthcart2.0_kerberos.prg -------------------------------------------------------------------------------- /bin/version2.0.0_RELEASE/cynthcart2.0_symphony.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.0_RELEASE/cynthcart2.0_symphony.prg -------------------------------------------------------------------------------- /bin/version2.0.1_RELEASE/cynthcart2.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.1_RELEASE/cynthcart2.0.1.pdf -------------------------------------------------------------------------------- /bin/version2.0.1_RELEASE/cynthcart2.0.1_emu.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.1_RELEASE/cynthcart2.0.1_emu.prg -------------------------------------------------------------------------------- /bin/version2.0.1_RELEASE/cynthcart2.0.1_kerberos.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.1_RELEASE/cynthcart2.0.1_kerberos.prg -------------------------------------------------------------------------------- /bin/version2.0.1_RELEASE/cynthcart2.0.1_symphony.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.1_RELEASE/cynthcart2.0.1_symphony.prg -------------------------------------------------------------------------------- /bin/version2.0.1_RELEASE/loader2.0.1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/bin/version2.0.1_RELEASE/loader2.0.1.bin -------------------------------------------------------------------------------- /images/cynth_screenshot_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_help.png -------------------------------------------------------------------------------- /images/cynth_screenshot_help_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_help_2x.png -------------------------------------------------------------------------------- /images/cynth_screenshot_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_main.png -------------------------------------------------------------------------------- /images/cynth_screenshot_main_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_main_2x.png -------------------------------------------------------------------------------- /images/cynth_screenshot_sidedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_sidedit.png -------------------------------------------------------------------------------- /images/cynth_screenshot_sidedit_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/cynth_screenshot_sidedit_2x.png -------------------------------------------------------------------------------- /images/moreScreenshots/cynth_screen_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/moreScreenshots/cynth_screen_main.png -------------------------------------------------------------------------------- /images/moreScreenshots/cynth_screen_main2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/moreScreenshots/cynth_screen_main2.0.png -------------------------------------------------------------------------------- /images/other/mp3playerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/other/mp3playerImage.png -------------------------------------------------------------------------------- /images/photos/2016-05-10 13.31.28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/photos/2016-05-10 13.31.28.jpg -------------------------------------------------------------------------------- /images/photos/c64_midi_sidcart_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/photos/c64_midi_sidcart_sm.jpg -------------------------------------------------------------------------------- /images/photos/cynthOverlayKeyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/photos/cynthOverlayKeyboard.jpg -------------------------------------------------------------------------------- /images/photos/cynth_midi_closeup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/images/photos/cynth_midi_closeup.jpg -------------------------------------------------------------------------------- /makeCynthcart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/makeCynthcart.bat -------------------------------------------------------------------------------- /manual/cynthcart2.0.1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/cynthcart2.0.1.odt -------------------------------------------------------------------------------- /manual/cynthcart2.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/cynthcart2.0.1.pdf -------------------------------------------------------------------------------- /manual/cynthcart2.0.1_5x7.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/cynthcart2.0.1_5x7.odt -------------------------------------------------------------------------------- /manual/cynthcart2.0.1_5x7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/cynthcart2.0.1_5x7.pdf -------------------------------------------------------------------------------- /manual/keyboardReferenceCharts/cynthcartCommandChart1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/keyboardReferenceCharts/cynthcartCommandChart1.pdf -------------------------------------------------------------------------------- /manual/keyboardReferenceCharts/cynthcartCommandChart2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/keyboardReferenceCharts/cynthcartCommandChart2.pdf -------------------------------------------------------------------------------- /manual/keyboardReferenceCharts/cynthcartVisualKBReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/keyboardReferenceCharts/cynthcartVisualKBReference.png -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart.odt -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart2.0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart2.0.odt -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart2.0.pdf -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart5x7_1.2.4c.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart5x7_1.2.4c.odt -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart5x7_1.2.4c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart5x7_1.2.4c.pdf -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart_1.2.4 (unfinished).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart_1.2.4 (unfinished).txt -------------------------------------------------------------------------------- /manual/oldManuals/cynthcart_website_reference_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/manual/oldManuals/cynthcart_website_reference_old.txt -------------------------------------------------------------------------------- /other/gertsModifiedVersion/cynthc_151b_+MOD_RELEASE_VERSION.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/gertsModifiedVersion/cynthc_151b_+MOD_RELEASE_VERSION.prg -------------------------------------------------------------------------------- /other/notes/MIDI controller numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/MIDI controller numbers.txt -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki].html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki].html -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/c64codebase_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/c64codebase_v2.png -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/css.php -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/ga.js -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/indexer.php -------------------------------------------------------------------------------- /other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/base_c64_midi_interfaces [Codebase 64 wiki]_files/js.php -------------------------------------------------------------------------------- /other/notes/c64_keyboard_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/c64_keyboard_layout.jpg -------------------------------------------------------------------------------- /other/notes/midi_detect_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/notes/midi_detect_notes.txt -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/cynthcart151.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/cynthcart151.prg -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/cynthcart151b_8580-custom.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/cynthcart151b_8580-custom.prg -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/cynthcart151c.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/cynthcart151c.prg -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/cynthcart152_comp.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/cynthcart152_comp.prg -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/eprom.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/eprom.cmp -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/loader2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/loader2.asm -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/loader2.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/loader2.prg -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/sa_uncrunch_orig.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/sa_uncrunch_orig.asm -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/sa_uncrunch_orig.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/sa_uncrunch_orig.prg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/oldVersionsAndFiles/v1.5.1c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/other/oldVersionsAndFiles/v1.5.1c.zip -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/readme.md -------------------------------------------------------------------------------- /source/cynthcart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthcart.asm -------------------------------------------------------------------------------- /source/cynthdata.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthdata.asm -------------------------------------------------------------------------------- /source/cynthdisplay.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthdisplay.asm -------------------------------------------------------------------------------- /source/cynthkeyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthkeyboard.asm -------------------------------------------------------------------------------- /source/cynthkeycommands.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthkeycommands.asm -------------------------------------------------------------------------------- /source/cynthloader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthloader.asm -------------------------------------------------------------------------------- /source/cynthmidi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthmidi.asm -------------------------------------------------------------------------------- /source/cynthmidi_dummy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthmidi_dummy.asm -------------------------------------------------------------------------------- /source/cynthmidirecv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthmidirecv.asm -------------------------------------------------------------------------------- /source/cynthmodulation.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthmodulation.asm -------------------------------------------------------------------------------- /source/cynthsetshow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthsetshow.asm -------------------------------------------------------------------------------- /source/cynthsidedit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthsidedit.asm -------------------------------------------------------------------------------- /source/cynthsound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthsound.asm -------------------------------------------------------------------------------- /source/cynthsubroutines.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthsubroutines.asm -------------------------------------------------------------------------------- /source/cynthtuning.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthtuning.asm -------------------------------------------------------------------------------- /source/cynthvars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/source/cynthvars.asm -------------------------------------------------------------------------------- /tools/dasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/dasm.exe -------------------------------------------------------------------------------- /tools/pucrunch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunch.exe -------------------------------------------------------------------------------- /tools/pucrunchExtras/oldBatchFiles/cruncnth.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/oldBatchFiles/cruncnth.bat -------------------------------------------------------------------------------- /tools/pucrunchExtras/oldBatchFiles/crunsc_b.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/oldBatchFiles/crunsc_b.bat -------------------------------------------------------------------------------- /tools/pucrunchExtras/oldBatchFiles/crunscrp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/oldBatchFiles/crunscrp.bat -------------------------------------------------------------------------------- /tools/pucrunchExtras/oldBatchFiles/makeppt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/oldBatchFiles/makeppt.bat -------------------------------------------------------------------------------- /tools/pucrunchExtras/oldBatchFiles/pp2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/oldBatchFiles/pp2.bat -------------------------------------------------------------------------------- /tools/pucrunchExtras/ppt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/ppt.asm -------------------------------------------------------------------------------- /tools/pucrunchExtras/pucrunch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/pucrunch.exe -------------------------------------------------------------------------------- /tools/pucrunchExtras/sa_uncrunch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulSlocum/cynthcart/HEAD/tools/pucrunchExtras/sa_uncrunch.asm --------------------------------------------------------------------------------