├── .gitignore ├── 3rdParty └── EasyLoader │ ├── .deps │ └── .mkdir │ ├── Makefile │ ├── build │ └── .mkdir │ ├── const.asm │ ├── docs │ ├── boot-once.txt │ ├── screen-saver.txt │ └── xbank.txt │ ├── easyloader_nrm.asm │ ├── easyloader_ocm.asm │ ├── entries │ ├── draw.asm │ ├── scan.asm │ ├── search.asm │ └── sort.asm │ ├── graphics │ ├── easyloader_font.png │ └── sprites.png │ ├── helper │ ├── commands.asm │ ├── commands.txt │ ├── commands16.asm │ ├── commands24.asm │ ├── commands8.asm │ ├── macros.asm │ └── tools.asm │ ├── loader │ ├── basic.asm │ ├── cart.asm │ ├── common.asm │ └── file.asm │ ├── main.asm │ ├── screen │ ├── colors.asm │ ├── init.asm │ └── screen.php │ ├── tools │ ├── easyloader_launcher.asm │ ├── easyloader_launcher_nrm.bin │ ├── easyloader_launcher_ocm.bin │ ├── example.EasyLoader.rc │ ├── example.Package.rc │ ├── mk_easyflash_module.php │ └── mkdep.php │ ├── ui │ ├── input.asm │ ├── last_config.asm │ └── menu.asm │ └── vars.asm ├── EF3BootImage ├── CHANGES.txt ├── Makefile ├── README.txt ├── directory-jb.s ├── directory.s ├── ef3kernal │ ├── Makefile │ └── src │ │ ├── ef3kernal.s │ │ ├── kernal.bin │ │ ├── kernal_b1.s │ │ ├── kernal_common.s │ │ ├── kernal_inc.s │ │ ├── kernal_zp.s │ │ ├── ld.kernal.cfg │ │ ├── usbrx.c │ │ └── usbrx_asm.s ├── efmenu │ ├── Makefile │ └── src │ │ ├── background.iph │ │ ├── charset.sed │ │ ├── crt0.s │ │ ├── efmenu.c │ │ ├── efmenu.h │ │ ├── efmenu_asm.s │ │ ├── gfx.s │ │ ├── image_detect.c │ │ ├── image_detect.h │ │ ├── joy.s │ │ ├── ld.cfg │ │ ├── ld2.cfg │ │ ├── memcfg.h │ │ ├── memcfg.inc │ │ ├── menu5.iph │ │ ├── menu6.iph │ │ ├── menu7.iph │ │ ├── sound.s │ │ ├── text_plot.c │ │ ├── text_plot.h │ │ └── text_plot_asm.s ├── images │ ├── ar.bin │ ├── beast.bin │ ├── exos.bin │ ├── rr38ppal.bin │ └── ttn2crom.bin ├── mkimages.c ├── prgstart │ ├── Makefile │ └── src │ │ ├── crt0.crt.s │ │ ├── ld.crt.cfg │ │ ├── ld2.crt.cfg │ │ ├── prg.s │ │ ├── prgstart.c │ │ └── prgstart.h └── trampoline.s ├── EasyProg ├── CHANGES ├── IMPORTANT.txt ├── Makefile ├── eload │ ├── Makefile │ └── src │ │ ├── drive_1541.s │ │ ├── drive_1571.s │ │ ├── drive_1581.s │ │ ├── drive_common.s │ │ ├── drive_detect.s │ │ ├── drive_sd2iec.s │ │ ├── drivetype.s │ │ ├── eload.h │ │ ├── eload.s │ │ ├── eload_close.s │ │ ├── eload_dos.s │ │ ├── eload_read.s │ │ ├── eload_read_byte.s │ │ ├── eload_test.c │ │ ├── kernal.s │ │ ├── send_code.s │ │ ├── xfer_drive_1mhz.s │ │ └── xfer_drive_2mhz.s ├── libprint │ ├── Makefile │ ├── README │ └── src │ │ ├── print.h │ │ ├── print_crlf.s │ │ ├── print_hex_digit.s │ │ ├── print_hex_padded.c │ │ ├── print_init.s │ │ ├── print_putc.s │ │ └── print_puts.c ├── src │ ├── autoinit.c │ ├── autoinit.h │ ├── cart.c │ ├── cart.h │ ├── crt0.s │ ├── dir.c │ ├── dir.h │ ├── eapiglue.h │ ├── eapiglueasm.s │ ├── easyprog.c │ ├── easyprog.h │ ├── exostreamdecr1.s │ ├── filedlg.c │ ├── filedlg.h │ ├── flash.c │ ├── flash.h │ ├── hex.c │ ├── hex.h │ ├── ld.cfg │ ├── ld2.cfg │ ├── progress.c │ ├── progress.h │ ├── progressasm.s │ ├── screen.c │ ├── screen.h │ ├── screenasm.s │ ├── selectbox.c │ ├── selectbox.h │ ├── slots.c │ ├── slots.h │ ├── sprites.h │ ├── sprites.s │ ├── spritesasm.s │ ├── startup.s │ ├── startupbin.h │ ├── startupbin.s │ ├── texts.c │ ├── texts.h │ ├── timer.h │ ├── timerasm.s │ ├── torturetest.c │ ├── torturetest.h │ ├── torturetestasm.s │ ├── usbtest.c │ ├── usbtest.h │ ├── util.c │ ├── util.h │ ├── utilasm.s │ ├── write.c │ └── write.h └── todo.txt ├── EasySDK ├── artwork │ ├── EasyFlash-Logo-Master.eps │ └── EasyFlash-Logo-Master.gif ├── docs │ ├── EasyFlash-AppSupport.pdf │ ├── EasyFlash-ProgRef.pdf │ ├── contrib │ │ └── crt-file-format.txt │ └── latex │ │ ├── Makefile │ │ └── src │ │ ├── EasyFlash-AppSupport.tex │ │ ├── EasyFlash-ProgRef.tex │ │ ├── address-scheme.pdf │ │ ├── address-scheme.svg │ │ ├── easyfs.pdf │ │ ├── easyfs.svg │ │ ├── key-commodore.pdf │ │ ├── key-commodore.svg │ │ ├── key-q.pdf │ │ ├── key-q.svg │ │ ├── key-runstop.pdf │ │ └── key-runstop.svg ├── eapi │ ├── Makefile │ ├── eapi-am29f040.s │ ├── eapi-m29w160t.s │ ├── eapi-mx29640b.s │ ├── eapi-sst39sf040.s │ ├── eapi_defs.s │ └── test.s ├── examples │ ├── banking-test │ │ ├── Makefile │ │ ├── README │ │ └── banking-test.s │ ├── cc65-16k-crt │ │ ├── Makefile │ │ └── src │ │ │ ├── c64-16k-crt.cfg │ │ │ ├── crt0.s │ │ │ └── hello.c │ ├── cc65-ef-crt │ │ ├── Makefile │ │ └── src │ │ │ ├── c64-ef-crt.cfg │ │ │ ├── crt0.s │ │ │ └── hello.c │ └── minimal-crt │ │ ├── Makefile │ │ ├── README │ │ └── minimal.s └── tools │ ├── Makefile │ └── bin2efcrt.c ├── EasySplit ├── CHANGES ├── COPYING ├── INSTALL ├── Makefile ├── README ├── make │ ├── common │ │ ├── install.mk │ │ ├── rules.mk │ │ └── transform.mk │ └── win32-cross-mingw │ │ ├── Makefile │ │ ├── cross-mingw.mk │ │ └── cross-wx.mk ├── res │ ├── easysplit.desktop │ └── easysplit.png └── src │ ├── EasySplitApp.cpp │ ├── EasySplitApp.h │ ├── EasySplitMainFrame.cpp │ ├── EasySplitMainFrame.h │ ├── WorkerThread.cpp │ ├── WorkerThread.h │ ├── callback.h │ ├── chunkpool.c │ ├── chunkpool.h │ ├── crc16.c │ ├── crc16.h │ ├── exo_helper.c │ ├── exo_helper.h │ ├── exo_util.c │ ├── exo_util.h │ ├── exodec.c │ ├── exodec.h │ ├── getflag.c │ ├── getflag.h │ ├── log.h │ ├── match.c │ ├── match.h │ ├── membuf.c │ ├── membuf.h │ ├── membuf_io.c │ ├── membuf_io.h │ ├── optimal.c │ ├── optimal.h │ ├── output.c │ ├── output.h │ ├── progress.c │ ├── progress.h │ ├── radix.c │ ├── radix.h │ ├── search.c │ └── search.h ├── EasyTransfer ├── CHANGES ├── COPYING ├── INSTALL ├── Makefile ├── README ├── archive │ ├── filefn.wx2.8.12.diff │ ├── libftdi-HEAD-a67c3be.tar.gz │ └── libusb-1.0.9.tar.bz2 ├── make │ ├── bin2c.py │ ├── common │ │ └── install.mk │ └── win32-cross-mingw │ │ ├── Toolchain-i686-w64-mingw32.cmake │ │ ├── cross-ftdi.mk │ │ └── cross-wx.mk ├── res │ ├── easytransfer.desktop │ └── easytransfer.png └── src │ ├── EasyTransfer.rc │ ├── EasyTransferApp.cpp │ ├── EasyTransferApp.h │ ├── EasyTransferMainFrame.cpp │ ├── EasyTransferMainFrame.h │ ├── TabStartPRG.cpp │ ├── TabStartPRG.h │ ├── TabUSBTest.cpp │ ├── TabUSBTest.h │ ├── TabWriteCRT.cpp │ ├── TabWriteCRT.h │ ├── TabWriteDisk.cpp │ ├── TabWriteDisk.h │ ├── WorkerThread.cpp │ ├── WorkerThread.h │ ├── d64writer │ ├── Makefile │ └── src │ │ ├── crt0.s │ │ ├── d64writer.c │ │ ├── d64writer.h │ │ ├── ld.cfg │ │ └── write_disk.c │ ├── ef3xfer.h │ ├── ef3xfer_d64.c │ ├── ef3xfer_file.c │ ├── ef3xfer_internal.h │ ├── ef3xfer_log.c │ ├── ef3xfer_main.c │ ├── ef3xfer_transport.c │ ├── ef3xfer_usb_test.c │ ├── str_to_key.c │ └── str_to_key.h ├── Hardware ├── eagle-logic-tht │ ├── EasyFlash 1.4.1 REV B.brd │ └── EasyFlash 1.4.1 REV B.sch ├── ef2-vhdl │ ├── Makefile │ ├── ef2.prj │ ├── ef2.wcfg │ ├── ef2.xst │ ├── impact.batch │ └── src │ │ ├── ef2.ucf │ │ ├── ef2.vhdl │ │ ├── ef2_types.vhdl │ │ ├── exp_bus_ctrl.vhdl │ │ ├── freezer.vhdl │ │ └── reset_generator.vhdl ├── ef3-ftdi │ ├── easyflash3-ftdi-template.xml │ └── initial-programming │ │ ├── index.html │ │ └── snapshots │ │ ├── snap_01.png │ │ ├── snap_02.png │ │ ├── snap_03.png │ │ ├── snap_04.png │ │ ├── snap_05.png │ │ ├── snap_06.png │ │ ├── snap_07.png │ │ ├── snap_08.png │ │ ├── snap_09.png │ │ ├── snap_10.png │ │ ├── snap_11.png │ │ ├── snap_12.png │ │ ├── snap_13.png │ │ └── snap_14.png ├── ef3-kicad │ ├── LICENSE │ ├── MX29LV640EBT.dcm │ ├── MX29LV640EBT.lib │ ├── TSOP1-48.emp │ ├── ef-logo.mod │ ├── ef3-bom.txt │ ├── ef3-mounting-diagram-1.3.pdf │ ├── ef3-v1.3-gerber.zip │ ├── ef3.brd │ ├── ef3.cmp │ ├── ef3.dcm │ ├── ef3.lib │ ├── ef3.mdc │ ├── ef3.mod │ ├── ef3.net │ ├── ef3.pdf │ ├── ef3.pro │ ├── ef3.sch │ ├── expansion_port.emp │ ├── expansion_port.lib │ ├── mkgerber.sh │ └── xc95144xl-tq100.lib ├── ef3-vhdl │ ├── Makefile │ ├── README.txt │ ├── architecture.txt │ ├── doc │ │ ├── Makefile │ │ └── src │ │ │ ├── diagrams.vpp │ │ │ ├── ef3-1-1.jpg │ │ │ ├── ef3-1-3.jpg │ │ │ ├── implemented-timing.svg │ │ │ ├── kernal-cartridge.tex │ │ │ ├── la-detect.png │ │ │ ├── la-read.png │ │ │ ├── memory-map-hiram.pdf │ │ │ ├── memory-map-hiram.svg │ │ │ ├── memory-map-plain.eps │ │ │ ├── memory-map-plain.pdf │ │ │ ├── memory-map-plain.svg │ │ │ ├── phi2-data-bus-250407.png │ │ │ ├── phi2-data-bus-250469.png │ │ │ └── working-principle.svg │ ├── ef3.prj │ ├── ef3.xst │ ├── impact.batch │ ├── src │ │ ├── cart_ar.vhdl │ │ ├── cart_easyflash.vhdl │ │ ├── cart_fc3.vhdl │ │ ├── cart_io2ram.vhdl │ │ ├── cart_kernal.vhdl │ │ ├── cart_ss5.vhdl │ │ ├── cart_usb.vhdl │ │ ├── ef3.ucf │ │ ├── ef3.vhdl │ │ ├── exp_bus_ctrl.vhdl │ │ ├── freezer.vhdl │ │ └── reset_generator.vhdl │ ├── test_list.txt │ └── testcrts │ │ └── np_test │ │ ├── Makefile │ │ └── np_test.s └── kicad-logic-tht │ ├── easyflash.brd │ ├── easyflash.cmp │ ├── easyflash.lib │ ├── easyflash.net │ ├── easyflash.pdf │ ├── easyflash.pro │ ├── easyflash.sch │ └── expansion-port.mod ├── README.txt └── libs ├── eload ├── Makefile ├── docs │ ├── gaps.ods │ └── pal-ntsc.ods ├── implementation.txt ├── src │ ├── config.s │ ├── drive_1541.s │ ├── drive_1541_format.s │ ├── drive_1541_inc.s │ ├── drive_1541_read.s │ ├── drive_1541_write.s │ ├── drive_1571.s │ ├── drive_1581.s │ ├── drive_detect.s │ ├── drive_sd2iec.s │ ├── drivetype.s │ ├── eload.h │ ├── eload.s │ ├── eload_checksum.s │ ├── eload_close.s │ ├── eload_config.s │ ├── eload_dos.s │ ├── eload_format.s │ ├── eload_macros.s │ ├── eload_read.s │ ├── eload_read_byte.s │ ├── eload_recv.s │ ├── eload_recv_block.s │ ├── eload_send.s │ ├── eload_send_nodma.s │ ├── eload_sendtab.s │ ├── eload_write_sector.s │ ├── eload_write_sector_nodma.s │ ├── kernal.s │ ├── send_code.s │ ├── xfer_drive_1mhz.s │ └── xfer_drive_2mhz.s └── test │ ├── crt0.s │ ├── eload_test.c │ ├── gcr.s │ └── ld.cfg └── libef3usb ├── Makefile └── src ├── ef3usb.h ├── ef3usb_check_cmd.s ├── ef3usb_discard_rx.s ├── ef3usb_fclose.s ├── ef3usb_fload.s ├── ef3usb_fread.s ├── ef3usb_macros.s ├── ef3usb_send_data.s ├── ef3usb_send_str.s └── usb.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdParty/EasyLoader/.deps/.mkdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/EasyLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/Makefile -------------------------------------------------------------------------------- /3rdParty/EasyLoader/build/.mkdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/EasyLoader/const.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/const.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/docs/boot-once.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/docs/boot-once.txt -------------------------------------------------------------------------------- /3rdParty/EasyLoader/docs/screen-saver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/docs/screen-saver.txt -------------------------------------------------------------------------------- /3rdParty/EasyLoader/docs/xbank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/docs/xbank.txt -------------------------------------------------------------------------------- /3rdParty/EasyLoader/easyloader_nrm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/easyloader_nrm.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/easyloader_ocm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/easyloader_ocm.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/entries/draw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/entries/draw.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/entries/scan.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/entries/scan.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/entries/search.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/entries/search.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/entries/sort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/entries/sort.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/graphics/easyloader_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/graphics/easyloader_font.png -------------------------------------------------------------------------------- /3rdParty/EasyLoader/graphics/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/graphics/sprites.png -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/commands.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/commands.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/commands.txt -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/commands16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/commands16.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/commands24.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/commands24.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/commands8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/commands8.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/macros.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/helper/tools.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/helper/tools.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/loader/basic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/loader/basic.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/loader/cart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/loader/cart.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/loader/common.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/loader/common.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/loader/file.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/loader/file.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/main.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/screen/colors.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/screen/colors.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/screen/init.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/screen/init.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/screen/screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/screen/screen.php -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/easyloader_launcher.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/easyloader_launcher.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/easyloader_launcher_nrm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/easyloader_launcher_nrm.bin -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/easyloader_launcher_ocm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/easyloader_launcher_ocm.bin -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/example.EasyLoader.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/example.EasyLoader.rc -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/example.Package.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/example.Package.rc -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/mk_easyflash_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/mk_easyflash_module.php -------------------------------------------------------------------------------- /3rdParty/EasyLoader/tools/mkdep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/tools/mkdep.php -------------------------------------------------------------------------------- /3rdParty/EasyLoader/ui/input.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/ui/input.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/ui/last_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/ui/last_config.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/ui/menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/ui/menu.asm -------------------------------------------------------------------------------- /3rdParty/EasyLoader/vars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/3rdParty/EasyLoader/vars.asm -------------------------------------------------------------------------------- /EF3BootImage/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/CHANGES.txt -------------------------------------------------------------------------------- /EF3BootImage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/Makefile -------------------------------------------------------------------------------- /EF3BootImage/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/README.txt -------------------------------------------------------------------------------- /EF3BootImage/directory-jb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/directory-jb.s -------------------------------------------------------------------------------- /EF3BootImage/directory.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/directory.s -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/Makefile -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/ef3kernal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/ef3kernal.s -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/kernal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/kernal.bin -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/kernal_b1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/kernal_b1.s -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/kernal_common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/kernal_common.s -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/kernal_inc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/kernal_inc.s -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/kernal_zp.s: -------------------------------------------------------------------------------- 1 | 2 | ; This module exports all zero page locations we use 3 | 4 | -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/ld.kernal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/ld.kernal.cfg -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/usbrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/usbrx.c -------------------------------------------------------------------------------- /EF3BootImage/ef3kernal/src/usbrx_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/ef3kernal/src/usbrx_asm.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/Makefile -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/background.iph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/background.iph -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/charset.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/charset.sed -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/crt0.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/efmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/efmenu.c -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/efmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/efmenu.h -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/efmenu_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/efmenu_asm.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/gfx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/gfx.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/image_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/image_detect.c -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/image_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/image_detect.h -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/joy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/joy.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/ld.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/ld.cfg -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/ld2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/ld2.cfg -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/memcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/memcfg.h -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/memcfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/memcfg.inc -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/menu5.iph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/menu5.iph -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/menu6.iph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/menu6.iph -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/menu7.iph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/menu7.iph -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/sound.s -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/text_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/text_plot.c -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/text_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/text_plot.h -------------------------------------------------------------------------------- /EF3BootImage/efmenu/src/text_plot_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/efmenu/src/text_plot_asm.s -------------------------------------------------------------------------------- /EF3BootImage/images/ar.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/images/ar.bin -------------------------------------------------------------------------------- /EF3BootImage/images/beast.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/images/beast.bin -------------------------------------------------------------------------------- /EF3BootImage/images/exos.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/images/exos.bin -------------------------------------------------------------------------------- /EF3BootImage/images/rr38ppal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/images/rr38ppal.bin -------------------------------------------------------------------------------- /EF3BootImage/images/ttn2crom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/images/ttn2crom.bin -------------------------------------------------------------------------------- /EF3BootImage/mkimages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/mkimages.c -------------------------------------------------------------------------------- /EF3BootImage/prgstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/Makefile -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/crt0.crt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/crt0.crt.s -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/ld.crt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/ld.crt.cfg -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/ld2.crt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/ld2.crt.cfg -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/prg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/prg.s -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/prgstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/prgstart.c -------------------------------------------------------------------------------- /EF3BootImage/prgstart/src/prgstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/prgstart/src/prgstart.h -------------------------------------------------------------------------------- /EF3BootImage/trampoline.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EF3BootImage/trampoline.s -------------------------------------------------------------------------------- /EasyProg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/CHANGES -------------------------------------------------------------------------------- /EasyProg/IMPORTANT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/IMPORTANT.txt -------------------------------------------------------------------------------- /EasyProg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/Makefile -------------------------------------------------------------------------------- /EasyProg/eload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/Makefile -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_1541.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_1541.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_1571.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_1571.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_1581.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_1581.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_common.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_detect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_detect.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drive_sd2iec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drive_sd2iec.s -------------------------------------------------------------------------------- /EasyProg/eload/src/drivetype.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/drivetype.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload.h -------------------------------------------------------------------------------- /EasyProg/eload/src/eload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload_close.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload_close.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload_dos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload_dos.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload_read.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload_read.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload_read_byte.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload_read_byte.s -------------------------------------------------------------------------------- /EasyProg/eload/src/eload_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/eload_test.c -------------------------------------------------------------------------------- /EasyProg/eload/src/kernal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/kernal.s -------------------------------------------------------------------------------- /EasyProg/eload/src/send_code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/send_code.s -------------------------------------------------------------------------------- /EasyProg/eload/src/xfer_drive_1mhz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/xfer_drive_1mhz.s -------------------------------------------------------------------------------- /EasyProg/eload/src/xfer_drive_2mhz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/eload/src/xfer_drive_2mhz.s -------------------------------------------------------------------------------- /EasyProg/libprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/Makefile -------------------------------------------------------------------------------- /EasyProg/libprint/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/README -------------------------------------------------------------------------------- /EasyProg/libprint/src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print.h -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_crlf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_crlf.s -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_hex_digit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_hex_digit.s -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_hex_padded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_hex_padded.c -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_init.s -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_putc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_putc.s -------------------------------------------------------------------------------- /EasyProg/libprint/src/print_puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/libprint/src/print_puts.c -------------------------------------------------------------------------------- /EasyProg/src/autoinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/autoinit.c -------------------------------------------------------------------------------- /EasyProg/src/autoinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/autoinit.h -------------------------------------------------------------------------------- /EasyProg/src/cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/cart.c -------------------------------------------------------------------------------- /EasyProg/src/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/cart.h -------------------------------------------------------------------------------- /EasyProg/src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/crt0.s -------------------------------------------------------------------------------- /EasyProg/src/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/dir.c -------------------------------------------------------------------------------- /EasyProg/src/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/dir.h -------------------------------------------------------------------------------- /EasyProg/src/eapiglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/eapiglue.h -------------------------------------------------------------------------------- /EasyProg/src/eapiglueasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/eapiglueasm.s -------------------------------------------------------------------------------- /EasyProg/src/easyprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/easyprog.c -------------------------------------------------------------------------------- /EasyProg/src/easyprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/easyprog.h -------------------------------------------------------------------------------- /EasyProg/src/exostreamdecr1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/exostreamdecr1.s -------------------------------------------------------------------------------- /EasyProg/src/filedlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/filedlg.c -------------------------------------------------------------------------------- /EasyProg/src/filedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/filedlg.h -------------------------------------------------------------------------------- /EasyProg/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/flash.c -------------------------------------------------------------------------------- /EasyProg/src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/flash.h -------------------------------------------------------------------------------- /EasyProg/src/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/hex.c -------------------------------------------------------------------------------- /EasyProg/src/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/hex.h -------------------------------------------------------------------------------- /EasyProg/src/ld.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/ld.cfg -------------------------------------------------------------------------------- /EasyProg/src/ld2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/ld2.cfg -------------------------------------------------------------------------------- /EasyProg/src/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/progress.c -------------------------------------------------------------------------------- /EasyProg/src/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/progress.h -------------------------------------------------------------------------------- /EasyProg/src/progressasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/progressasm.s -------------------------------------------------------------------------------- /EasyProg/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/screen.c -------------------------------------------------------------------------------- /EasyProg/src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/screen.h -------------------------------------------------------------------------------- /EasyProg/src/screenasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/screenasm.s -------------------------------------------------------------------------------- /EasyProg/src/selectbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/selectbox.c -------------------------------------------------------------------------------- /EasyProg/src/selectbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/selectbox.h -------------------------------------------------------------------------------- /EasyProg/src/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/slots.c -------------------------------------------------------------------------------- /EasyProg/src/slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/slots.h -------------------------------------------------------------------------------- /EasyProg/src/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/sprites.h -------------------------------------------------------------------------------- /EasyProg/src/sprites.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/sprites.s -------------------------------------------------------------------------------- /EasyProg/src/spritesasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/spritesasm.s -------------------------------------------------------------------------------- /EasyProg/src/startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/startup.s -------------------------------------------------------------------------------- /EasyProg/src/startupbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/startupbin.h -------------------------------------------------------------------------------- /EasyProg/src/startupbin.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/startupbin.s -------------------------------------------------------------------------------- /EasyProg/src/texts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/texts.c -------------------------------------------------------------------------------- /EasyProg/src/texts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/texts.h -------------------------------------------------------------------------------- /EasyProg/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/timer.h -------------------------------------------------------------------------------- /EasyProg/src/timerasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/timerasm.s -------------------------------------------------------------------------------- /EasyProg/src/torturetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/torturetest.c -------------------------------------------------------------------------------- /EasyProg/src/torturetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/torturetest.h -------------------------------------------------------------------------------- /EasyProg/src/torturetestasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/torturetestasm.s -------------------------------------------------------------------------------- /EasyProg/src/usbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/usbtest.c -------------------------------------------------------------------------------- /EasyProg/src/usbtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/usbtest.h -------------------------------------------------------------------------------- /EasyProg/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/util.c -------------------------------------------------------------------------------- /EasyProg/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/util.h -------------------------------------------------------------------------------- /EasyProg/src/utilasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/utilasm.s -------------------------------------------------------------------------------- /EasyProg/src/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/write.c -------------------------------------------------------------------------------- /EasyProg/src/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/src/write.h -------------------------------------------------------------------------------- /EasyProg/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyProg/todo.txt -------------------------------------------------------------------------------- /EasySDK/artwork/EasyFlash-Logo-Master.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/artwork/EasyFlash-Logo-Master.eps -------------------------------------------------------------------------------- /EasySDK/artwork/EasyFlash-Logo-Master.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/artwork/EasyFlash-Logo-Master.gif -------------------------------------------------------------------------------- /EasySDK/docs/EasyFlash-AppSupport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/EasyFlash-AppSupport.pdf -------------------------------------------------------------------------------- /EasySDK/docs/EasyFlash-ProgRef.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/EasyFlash-ProgRef.pdf -------------------------------------------------------------------------------- /EasySDK/docs/contrib/crt-file-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/contrib/crt-file-format.txt -------------------------------------------------------------------------------- /EasySDK/docs/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/Makefile -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/EasyFlash-AppSupport.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/EasyFlash-AppSupport.tex -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/EasyFlash-ProgRef.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/EasyFlash-ProgRef.tex -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/address-scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/address-scheme.pdf -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/address-scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/address-scheme.svg -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/easyfs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/easyfs.pdf -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/easyfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/easyfs.svg -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-commodore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-commodore.pdf -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-commodore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-commodore.svg -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-q.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-q.pdf -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-q.svg -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-runstop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-runstop.pdf -------------------------------------------------------------------------------- /EasySDK/docs/latex/src/key-runstop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/docs/latex/src/key-runstop.svg -------------------------------------------------------------------------------- /EasySDK/eapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/Makefile -------------------------------------------------------------------------------- /EasySDK/eapi/eapi-am29f040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/eapi-am29f040.s -------------------------------------------------------------------------------- /EasySDK/eapi/eapi-m29w160t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/eapi-m29w160t.s -------------------------------------------------------------------------------- /EasySDK/eapi/eapi-mx29640b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/eapi-mx29640b.s -------------------------------------------------------------------------------- /EasySDK/eapi/eapi-sst39sf040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/eapi-sst39sf040.s -------------------------------------------------------------------------------- /EasySDK/eapi/eapi_defs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/eapi_defs.s -------------------------------------------------------------------------------- /EasySDK/eapi/test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/eapi/test.s -------------------------------------------------------------------------------- /EasySDK/examples/banking-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/banking-test/Makefile -------------------------------------------------------------------------------- /EasySDK/examples/banking-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/banking-test/README -------------------------------------------------------------------------------- /EasySDK/examples/banking-test/banking-test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/banking-test/banking-test.s -------------------------------------------------------------------------------- /EasySDK/examples/cc65-16k-crt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-16k-crt/Makefile -------------------------------------------------------------------------------- /EasySDK/examples/cc65-16k-crt/src/c64-16k-crt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-16k-crt/src/c64-16k-crt.cfg -------------------------------------------------------------------------------- /EasySDK/examples/cc65-16k-crt/src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-16k-crt/src/crt0.s -------------------------------------------------------------------------------- /EasySDK/examples/cc65-16k-crt/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-16k-crt/src/hello.c -------------------------------------------------------------------------------- /EasySDK/examples/cc65-ef-crt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-ef-crt/Makefile -------------------------------------------------------------------------------- /EasySDK/examples/cc65-ef-crt/src/c64-ef-crt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-ef-crt/src/c64-ef-crt.cfg -------------------------------------------------------------------------------- /EasySDK/examples/cc65-ef-crt/src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-ef-crt/src/crt0.s -------------------------------------------------------------------------------- /EasySDK/examples/cc65-ef-crt/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/cc65-ef-crt/src/hello.c -------------------------------------------------------------------------------- /EasySDK/examples/minimal-crt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/minimal-crt/Makefile -------------------------------------------------------------------------------- /EasySDK/examples/minimal-crt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/minimal-crt/README -------------------------------------------------------------------------------- /EasySDK/examples/minimal-crt/minimal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/examples/minimal-crt/minimal.s -------------------------------------------------------------------------------- /EasySDK/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/tools/Makefile -------------------------------------------------------------------------------- /EasySDK/tools/bin2efcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySDK/tools/bin2efcrt.c -------------------------------------------------------------------------------- /EasySplit/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/CHANGES -------------------------------------------------------------------------------- /EasySplit/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/COPYING -------------------------------------------------------------------------------- /EasySplit/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/INSTALL -------------------------------------------------------------------------------- /EasySplit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/Makefile -------------------------------------------------------------------------------- /EasySplit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/README -------------------------------------------------------------------------------- /EasySplit/make/common/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/common/install.mk -------------------------------------------------------------------------------- /EasySplit/make/common/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/common/rules.mk -------------------------------------------------------------------------------- /EasySplit/make/common/transform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/common/transform.mk -------------------------------------------------------------------------------- /EasySplit/make/win32-cross-mingw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/win32-cross-mingw/Makefile -------------------------------------------------------------------------------- /EasySplit/make/win32-cross-mingw/cross-mingw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/win32-cross-mingw/cross-mingw.mk -------------------------------------------------------------------------------- /EasySplit/make/win32-cross-mingw/cross-wx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/make/win32-cross-mingw/cross-wx.mk -------------------------------------------------------------------------------- /EasySplit/res/easysplit.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/res/easysplit.desktop -------------------------------------------------------------------------------- /EasySplit/res/easysplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/res/easysplit.png -------------------------------------------------------------------------------- /EasySplit/src/EasySplitApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/EasySplitApp.cpp -------------------------------------------------------------------------------- /EasySplit/src/EasySplitApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/EasySplitApp.h -------------------------------------------------------------------------------- /EasySplit/src/EasySplitMainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/EasySplitMainFrame.cpp -------------------------------------------------------------------------------- /EasySplit/src/EasySplitMainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/EasySplitMainFrame.h -------------------------------------------------------------------------------- /EasySplit/src/WorkerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/WorkerThread.cpp -------------------------------------------------------------------------------- /EasySplit/src/WorkerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/WorkerThread.h -------------------------------------------------------------------------------- /EasySplit/src/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/callback.h -------------------------------------------------------------------------------- /EasySplit/src/chunkpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/chunkpool.c -------------------------------------------------------------------------------- /EasySplit/src/chunkpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/chunkpool.h -------------------------------------------------------------------------------- /EasySplit/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/crc16.c -------------------------------------------------------------------------------- /EasySplit/src/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/crc16.h -------------------------------------------------------------------------------- /EasySplit/src/exo_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exo_helper.c -------------------------------------------------------------------------------- /EasySplit/src/exo_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exo_helper.h -------------------------------------------------------------------------------- /EasySplit/src/exo_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exo_util.c -------------------------------------------------------------------------------- /EasySplit/src/exo_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exo_util.h -------------------------------------------------------------------------------- /EasySplit/src/exodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exodec.c -------------------------------------------------------------------------------- /EasySplit/src/exodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/exodec.h -------------------------------------------------------------------------------- /EasySplit/src/getflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/getflag.c -------------------------------------------------------------------------------- /EasySplit/src/getflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/getflag.h -------------------------------------------------------------------------------- /EasySplit/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/log.h -------------------------------------------------------------------------------- /EasySplit/src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/match.c -------------------------------------------------------------------------------- /EasySplit/src/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/match.h -------------------------------------------------------------------------------- /EasySplit/src/membuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/membuf.c -------------------------------------------------------------------------------- /EasySplit/src/membuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/membuf.h -------------------------------------------------------------------------------- /EasySplit/src/membuf_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/membuf_io.c -------------------------------------------------------------------------------- /EasySplit/src/membuf_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/membuf_io.h -------------------------------------------------------------------------------- /EasySplit/src/optimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/optimal.c -------------------------------------------------------------------------------- /EasySplit/src/optimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/optimal.h -------------------------------------------------------------------------------- /EasySplit/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/output.c -------------------------------------------------------------------------------- /EasySplit/src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/output.h -------------------------------------------------------------------------------- /EasySplit/src/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/progress.c -------------------------------------------------------------------------------- /EasySplit/src/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/progress.h -------------------------------------------------------------------------------- /EasySplit/src/radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/radix.c -------------------------------------------------------------------------------- /EasySplit/src/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/radix.h -------------------------------------------------------------------------------- /EasySplit/src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/search.c -------------------------------------------------------------------------------- /EasySplit/src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasySplit/src/search.h -------------------------------------------------------------------------------- /EasyTransfer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/CHANGES -------------------------------------------------------------------------------- /EasyTransfer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/COPYING -------------------------------------------------------------------------------- /EasyTransfer/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/INSTALL -------------------------------------------------------------------------------- /EasyTransfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/Makefile -------------------------------------------------------------------------------- /EasyTransfer/README: -------------------------------------------------------------------------------- 1 | 2 | - 3 | -------------------------------------------------------------------------------- /EasyTransfer/archive/filefn.wx2.8.12.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/archive/filefn.wx2.8.12.diff -------------------------------------------------------------------------------- /EasyTransfer/archive/libftdi-HEAD-a67c3be.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/archive/libftdi-HEAD-a67c3be.tar.gz -------------------------------------------------------------------------------- /EasyTransfer/archive/libusb-1.0.9.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/archive/libusb-1.0.9.tar.bz2 -------------------------------------------------------------------------------- /EasyTransfer/make/bin2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/make/bin2c.py -------------------------------------------------------------------------------- /EasyTransfer/make/common/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/make/common/install.mk -------------------------------------------------------------------------------- /EasyTransfer/make/win32-cross-mingw/Toolchain-i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/make/win32-cross-mingw/Toolchain-i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /EasyTransfer/make/win32-cross-mingw/cross-ftdi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/make/win32-cross-mingw/cross-ftdi.mk -------------------------------------------------------------------------------- /EasyTransfer/make/win32-cross-mingw/cross-wx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/make/win32-cross-mingw/cross-wx.mk -------------------------------------------------------------------------------- /EasyTransfer/res/easytransfer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/res/easytransfer.desktop -------------------------------------------------------------------------------- /EasyTransfer/res/easytransfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/res/easytransfer.png -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransfer.rc: -------------------------------------------------------------------------------- 1 | iconID ICON "easytransfer.ico" 2 | -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransferApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/EasyTransferApp.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransferApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/EasyTransferApp.h -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransferMainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/EasyTransferMainFrame.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransferMainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/EasyTransferMainFrame.h -------------------------------------------------------------------------------- /EasyTransfer/src/TabStartPRG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabStartPRG.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/TabStartPRG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabStartPRG.h -------------------------------------------------------------------------------- /EasyTransfer/src/TabUSBTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabUSBTest.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/TabUSBTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabUSBTest.h -------------------------------------------------------------------------------- /EasyTransfer/src/TabWriteCRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabWriteCRT.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/TabWriteCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabWriteCRT.h -------------------------------------------------------------------------------- /EasyTransfer/src/TabWriteDisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabWriteDisk.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/TabWriteDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/TabWriteDisk.h -------------------------------------------------------------------------------- /EasyTransfer/src/WorkerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/WorkerThread.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/WorkerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/WorkerThread.h -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/Makefile -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/src/crt0.s -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/src/d64writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/src/d64writer.c -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/src/d64writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/src/d64writer.h -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/src/ld.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/src/ld.cfg -------------------------------------------------------------------------------- /EasyTransfer/src/d64writer/src/write_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/d64writer/src/write_disk.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer.h -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_d64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_d64.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_file.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_internal.h -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_log.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_main.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_transport.c -------------------------------------------------------------------------------- /EasyTransfer/src/ef3xfer_usb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/ef3xfer_usb_test.c -------------------------------------------------------------------------------- /EasyTransfer/src/str_to_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/str_to_key.c -------------------------------------------------------------------------------- /EasyTransfer/src/str_to_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/EasyTransfer/src/str_to_key.h -------------------------------------------------------------------------------- /Hardware/eagle-logic-tht/EasyFlash 1.4.1 REV B.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/eagle-logic-tht/EasyFlash 1.4.1 REV B.brd -------------------------------------------------------------------------------- /Hardware/eagle-logic-tht/EasyFlash 1.4.1 REV B.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/eagle-logic-tht/EasyFlash 1.4.1 REV B.sch -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/Makefile -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/ef2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/ef2.prj -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/ef2.wcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/ef2.wcfg -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/ef2.xst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/ef2.xst -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/impact.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/impact.batch -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/ef2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/ef2.ucf -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/ef2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/ef2.vhdl -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/ef2_types.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/ef2_types.vhdl -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/exp_bus_ctrl.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/exp_bus_ctrl.vhdl -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/freezer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/freezer.vhdl -------------------------------------------------------------------------------- /Hardware/ef2-vhdl/src/reset_generator.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef2-vhdl/src/reset_generator.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/easyflash3-ftdi-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/easyflash3-ftdi-template.xml -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/index.html -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_01.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_02.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_03.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_04.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_05.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_06.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_07.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_08.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_09.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_10.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_11.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_12.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_13.png -------------------------------------------------------------------------------- /Hardware/ef3-ftdi/initial-programming/snapshots/snap_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-ftdi/initial-programming/snapshots/snap_14.png -------------------------------------------------------------------------------- /Hardware/ef3-kicad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/LICENSE -------------------------------------------------------------------------------- /Hardware/ef3-kicad/MX29LV640EBT.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 Date: Mi 23 Mär 2011 20:34:41 CET 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /Hardware/ef3-kicad/MX29LV640EBT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/MX29LV640EBT.lib -------------------------------------------------------------------------------- /Hardware/ef3-kicad/TSOP1-48.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/TSOP1-48.emp -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef-logo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef-logo.mod -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3-bom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3-bom.txt -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3-mounting-diagram-1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3-mounting-diagram-1.3.pdf -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3-v1.3-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3-v1.3-gerber.zip -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.brd -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.cmp -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.dcm -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.lib -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.mdc -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.mod -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.net -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.pdf -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.pro -------------------------------------------------------------------------------- /Hardware/ef3-kicad/ef3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/ef3.sch -------------------------------------------------------------------------------- /Hardware/ef3-kicad/expansion_port.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/expansion_port.emp -------------------------------------------------------------------------------- /Hardware/ef3-kicad/expansion_port.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/expansion_port.lib -------------------------------------------------------------------------------- /Hardware/ef3-kicad/mkgerber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/mkgerber.sh -------------------------------------------------------------------------------- /Hardware/ef3-kicad/xc95144xl-tq100.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-kicad/xc95144xl-tq100.lib -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/Makefile -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/README.txt -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/architecture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/architecture.txt -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/Makefile -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/diagrams.vpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/diagrams.vpp -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/ef3-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/ef3-1-1.jpg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/ef3-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/ef3-1-3.jpg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/implemented-timing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/implemented-timing.svg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/kernal-cartridge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/kernal-cartridge.tex -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/la-detect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/la-detect.png -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/la-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/la-read.png -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/memory-map-hiram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/memory-map-hiram.pdf -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/memory-map-hiram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/memory-map-hiram.svg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/memory-map-plain.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/memory-map-plain.eps -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/memory-map-plain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/memory-map-plain.pdf -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/memory-map-plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/memory-map-plain.svg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/phi2-data-bus-250407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/phi2-data-bus-250407.png -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/phi2-data-bus-250469.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/phi2-data-bus-250469.png -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/doc/src/working-principle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/doc/src/working-principle.svg -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/ef3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/ef3.prj -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/ef3.xst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/ef3.xst -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/impact.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/impact.batch -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_ar.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_ar.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_easyflash.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_easyflash.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_fc3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_fc3.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_io2ram.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_io2ram.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_kernal.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_kernal.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_ss5.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_ss5.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/cart_usb.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/cart_usb.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/ef3.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/ef3.ucf -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/ef3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/ef3.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/exp_bus_ctrl.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/exp_bus_ctrl.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/freezer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/freezer.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/src/reset_generator.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/src/reset_generator.vhdl -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/test_list.txt -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/testcrts/np_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/testcrts/np_test/Makefile -------------------------------------------------------------------------------- /Hardware/ef3-vhdl/testcrts/np_test/np_test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/ef3-vhdl/testcrts/np_test/np_test.s -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.brd -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.cmp -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.lib -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.net -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.pdf -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.pro -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/easyflash.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/easyflash.sch -------------------------------------------------------------------------------- /Hardware/kicad-logic-tht/expansion-port.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/Hardware/kicad-logic-tht/expansion-port.mod -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/README.txt -------------------------------------------------------------------------------- /libs/eload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/Makefile -------------------------------------------------------------------------------- /libs/eload/docs/gaps.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/docs/gaps.ods -------------------------------------------------------------------------------- /libs/eload/docs/pal-ntsc.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/docs/pal-ntsc.ods -------------------------------------------------------------------------------- /libs/eload/implementation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/implementation.txt -------------------------------------------------------------------------------- /libs/eload/src/config.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/config.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1541.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1541.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1541_format.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1541_format.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1541_inc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1541_inc.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1541_read.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1541_read.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1541_write.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1541_write.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1571.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1571.s -------------------------------------------------------------------------------- /libs/eload/src/drive_1581.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_1581.s -------------------------------------------------------------------------------- /libs/eload/src/drive_detect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_detect.s -------------------------------------------------------------------------------- /libs/eload/src/drive_sd2iec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drive_sd2iec.s -------------------------------------------------------------------------------- /libs/eload/src/drivetype.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/drivetype.s -------------------------------------------------------------------------------- /libs/eload/src/eload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload.h -------------------------------------------------------------------------------- /libs/eload/src/eload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload.s -------------------------------------------------------------------------------- /libs/eload/src/eload_checksum.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_checksum.s -------------------------------------------------------------------------------- /libs/eload/src/eload_close.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_close.s -------------------------------------------------------------------------------- /libs/eload/src/eload_config.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_config.s -------------------------------------------------------------------------------- /libs/eload/src/eload_dos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_dos.s -------------------------------------------------------------------------------- /libs/eload/src/eload_format.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_format.s -------------------------------------------------------------------------------- /libs/eload/src/eload_macros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_macros.s -------------------------------------------------------------------------------- /libs/eload/src/eload_read.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_read.s -------------------------------------------------------------------------------- /libs/eload/src/eload_read_byte.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_read_byte.s -------------------------------------------------------------------------------- /libs/eload/src/eload_recv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_recv.s -------------------------------------------------------------------------------- /libs/eload/src/eload_recv_block.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_recv_block.s -------------------------------------------------------------------------------- /libs/eload/src/eload_send.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_send.s -------------------------------------------------------------------------------- /libs/eload/src/eload_send_nodma.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_send_nodma.s -------------------------------------------------------------------------------- /libs/eload/src/eload_sendtab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_sendtab.s -------------------------------------------------------------------------------- /libs/eload/src/eload_write_sector.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_write_sector.s -------------------------------------------------------------------------------- /libs/eload/src/eload_write_sector_nodma.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/eload_write_sector_nodma.s -------------------------------------------------------------------------------- /libs/eload/src/kernal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/kernal.s -------------------------------------------------------------------------------- /libs/eload/src/send_code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/send_code.s -------------------------------------------------------------------------------- /libs/eload/src/xfer_drive_1mhz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/xfer_drive_1mhz.s -------------------------------------------------------------------------------- /libs/eload/src/xfer_drive_2mhz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/src/xfer_drive_2mhz.s -------------------------------------------------------------------------------- /libs/eload/test/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/test/crt0.s -------------------------------------------------------------------------------- /libs/eload/test/eload_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/test/eload_test.c -------------------------------------------------------------------------------- /libs/eload/test/gcr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/test/gcr.s -------------------------------------------------------------------------------- /libs/eload/test/ld.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/eload/test/ld.cfg -------------------------------------------------------------------------------- /libs/libef3usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/Makefile -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb.h -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_check_cmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_check_cmd.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_discard_rx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_discard_rx.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_fclose.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_fclose.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_fload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_fload.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_fread.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_fread.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_macros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_macros.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_send_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_send_data.s -------------------------------------------------------------------------------- /libs/libef3usb/src/ef3usb_send_str.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/ef3usb_send_str.s -------------------------------------------------------------------------------- /libs/libef3usb/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimJorgensen/easyflash/HEAD/libs/libef3usb/src/usb.c --------------------------------------------------------------------------------