├── .assets ├── add_device.png ├── audiofilter.png ├── buff.png ├── bufffinish.png ├── buffstart.png ├── c64_flash.png ├── console60k_m0s.png ├── console60k_zero.png ├── controller-pinout.jpg ├── dolphin.png ├── ds2_m0s_pmod_tm138kpro.png ├── flash_success.png ├── gowin.jpg ├── gowin1.jpg ├── keymap.gif ├── m0s_pmod_tp25k.jpg ├── mega60k.png ├── no device.png ├── primer20k.png ├── primer25k.png ├── sdram_mod.png ├── switch_1_on.png ├── tm138k_lcd.png ├── tn9k.png ├── tp20k_lcd.png ├── vic20-Joystick.png ├── vic20_tn9k_rework.png ├── vic20_tn9k_rework.svg ├── vic20_tn9k_top.svg ├── vic20_tp20k_bot.png ├── vic20_tp20k_bot.svg ├── vic20_tp20k_rework.png ├── vic20_tp20k_rework.svg ├── vic20_tp20k_top.png ├── vic20_tp20k_top.svg ├── vic20nano.png ├── wiring.svg ├── wiring_spi_irq.png └── wiring_tn20k_lcd.png ├── .gitattributes ├── .gitignore ├── .gitmodules ├── INSTALLATION_WINDOWS.md ├── LICENSE ├── README.md ├── TANG_CONSOLE_60K.md ├── TANG_LCD.md ├── TANG_MEGA_138K.md ├── TANG_MEGA_60K.md ├── TANG_NANO_9K.md ├── TANG_PRIMER_20K.md ├── TANG_PRIMER_25K.md ├── gw_sh.grc ├── impl ├── project.tcl ├── vic20nano_console138k_bl616_process_config.json ├── vic20nano_console60k_bl616_process_config.json ├── vic20nano_console60k_process_config.json ├── vic20nano_tm138k_lcd_process_config.json ├── vic20nano_tm138k_process_config.json ├── vic20nano_tm138kpro_bl616_process_config.json ├── vic20nano_tm60k_lcd_process_config.json ├── vic20nano_tm60k_process_config.json ├── vic20nano_tn20k_bl616_process_config.json ├── vic20nano_tn20k_lcd_process_config.json ├── vic20nano_tn20k_process_config.json ├── vic20nano_tn9k_lcd_process_config.json ├── vic20nano_tn9k_process_config.json ├── vic20nano_tp20k_lcd_process_config.json ├── vic20nano_tp20k_process_config.json └── vic20nano_tp25k_process_config.json ├── src ├── c1530.vhd ├── c1541 │ ├── c1541_logic.vhd │ ├── c1541_sd.vhd │ ├── gcr_floppy.vhd │ ├── mist_sd_card.sv │ └── via6522.vhd ├── dac.vhd ├── dualshock2.v ├── fifo_sc_hs │ ├── FIFO_SC_HS_Top_gw5a.ipc │ ├── FIFO_SC_HS_Top_gw5a.vhd │ ├── fifo_sc_hs.ipc │ └── fifo_sc_hs.vhd ├── gowin_dpb │ ├── gowin_dpb_1k.ipc │ ├── gowin_dpb_1k.vhd │ ├── gowin_dpb_1k_x4.ipc │ ├── gowin_dpb_1k_x4.vhd │ ├── gowin_dpb_2k.ipc │ ├── gowin_dpb_2k.vhd │ ├── gowin_dpb_8k.ipc │ ├── gowin_dpb_8k.vhd │ ├── gowin_dpb_track_buffer_b.ipc │ ├── gowin_dpb_track_buffer_b.v │ ├── gowin_dpb_trkbuf.ipc │ ├── gowin_dpb_trkbuf.v │ ├── sector_dpram.ipc │ └── sector_dpram.v ├── gowin_pll │ ├── gowin_pll_138k_flash.ipc │ ├── gowin_pll_138k_flash.vhd │ ├── gowin_pll_138k_ntsc.ipc │ ├── gowin_pll_138k_ntsc.vhd │ ├── gowin_pll_138k_pal.ipc │ ├── gowin_pll_138k_pal.vhd │ ├── gowin_pll_60k_flash.ipc │ ├── gowin_pll_60k_flash.vhd │ ├── gowin_pll_60k_ntsc.ipc │ ├── gowin_pll_60k_ntsc.vhd │ ├── gowin_pll_60k_pal.ipc │ ├── gowin_pll_60k_pal.vhd │ ├── gowin_pll_flash.ipc │ ├── gowin_pll_flash.vhd │ ├── gowin_pll_ntsc.ipc │ ├── gowin_pll_ntsc.vhd │ ├── gowin_pll_pal.ipc │ └── gowin_pll_pal.vhd ├── gowin_prom │ ├── gowin_prom_basic.ipc │ ├── gowin_prom_basic.vhd │ ├── gowin_prom_char.ipc │ └── gowin_prom_char.vhd ├── gowin_rpll │ ├── gowin_rpll.ipc │ └── gowin_rpll.vhd ├── gowin_sdpb │ ├── gowin_sdpb_kernal_8k.ipc │ ├── gowin_sdpb_kernal_8k.vhd │ ├── gowin_sdpb_kernal_8k_gw5a.ipc │ └── gowin_sdpb_kernal_8k_gw5a.vhd ├── gowin_sp │ ├── gowin_sp_2k.ipc │ ├── gowin_sp_2k.vhd │ ├── gowin_sp_8k.ipc │ ├── gowin_sp_8k.vhd │ ├── gowin_sp_cram.ipc │ └── gowin_sp_cram.vhd ├── gowin_sp_1kb │ ├── gowin_sp_1kb.ipc │ └── gowin_sp_1kb.vhd ├── gowin_sp_2kb │ ├── gowin_sp_2kb.ipc │ └── gowin_sp_2kb.vhd ├── hdmi │ ├── audio_clock_regeneration_packet.sv │ ├── audio_info_frame.sv │ ├── audio_sample_packet.sv │ ├── auxiliary_video_information_info_frame.sv │ ├── hdmi.sv │ ├── packet_assembler.sv │ ├── packet_picker.sv │ ├── serializer.sv │ ├── source_product_description_info_frame.sv │ └── tmds_channel.sv ├── loader_sd_card.sv ├── m6522.vhd ├── m6561.vhd ├── megacart.v ├── megacart_nvram.v ├── misc │ ├── flash_dspi.v │ ├── flash_dspi_gw5a.v │ ├── hid.v │ ├── mcu_spi.v │ ├── osd_u8g2.v │ ├── scandoubler.v │ ├── sd_card.v │ ├── sd_rw.v │ ├── sdcmd_ctrl.v │ ├── sysctrl.v │ ├── vic20.xml │ ├── vic20_keymap.v │ ├── vic20_xml.hex │ ├── video.v │ ├── video_analyzer.v │ ├── video_lcd.v │ ├── ws2812.v │ └── xxd.exe ├── psram_controller.v ├── ram_conf_1024x4.vhd ├── ram_conf_1024x8.vhd ├── ram_conf_2048x8.vhd ├── ram_conf_8192x8.vhd ├── sdram.sv ├── sdram.v ├── sdram8.sv ├── sdram8.v ├── t65 │ ├── T65.vhd │ ├── T65_ALU.vhd │ ├── T65_MCode.vhd │ └── T65_Pack.vhd ├── tang │ ├── console138k_bl616 │ │ ├── vic20nano_top.cst │ │ ├── vic20nano_top.sdc │ │ └── vic20nano_top.vhd │ ├── console60k │ │ ├── vic20nano_top_tc60k.cst │ │ ├── vic20nano_top_tc60k.sdc │ │ ├── vic20nano_top_tc60k.vhd │ │ └── video.v │ ├── console60k_bl616 │ │ ├── vic20nano_top_tc60k.cst │ │ ├── vic20nano_top_tc60k.sdc │ │ └── vic20nano_top_tc60k.vhd │ ├── mega138k │ │ ├── vic20nano_top_tm138k.cst │ │ ├── vic20nano_top_tm138k.sdc │ │ ├── vic20nano_top_tm138k.vhd │ │ ├── vic20nano_top_tm138k_lcd.cst │ │ ├── vic20nano_top_tm138k_lcd.sdc │ │ └── vic20nano_top_tm138k_lcd.vhd │ ├── mega138kpro_bl616 │ │ ├── vic20nano_top_tm138k.cst │ │ ├── vic20nano_top_tm138k.sdc │ │ └── vic20nano_top_tm138k.vhd │ ├── mega60k │ │ ├── vic20nano_top_tm60k.cst │ │ ├── vic20nano_top_tm60k.sdc │ │ ├── vic20nano_top_tm60k.vhd │ │ ├── vic20nano_top_tm60k_lcd.cst │ │ ├── vic20nano_top_tm60k_lcd.sdc │ │ └── vic20nano_top_tm60k_lcd.vhd │ ├── nano20k_bl616 │ │ ├── vic20nano_top_tn20k.cst │ │ ├── vic20nano_top_tn20k.sdc │ │ └── vic20nano_top_tn20k.vhd │ ├── nano20k_lcd │ │ ├── vic20nano_top_tn20k_lcd.cst │ │ ├── vic20nano_top_tn20k_lcd.sdc │ │ └── vic20nano_top_tn20k_lcd.vhd │ ├── nano9k │ │ ├── flash_dspi.v │ │ ├── psram_controller.vhd │ │ ├── vic20_tn9k.vhd │ │ ├── vic20nano_top_tn9k.cst │ │ ├── vic20nano_top_tn9k.sdc │ │ └── vic20nano_top_tn9k.vhd │ ├── nano9k_lcd │ │ ├── vic20nano_top_tn9k_lcd.cst │ │ ├── vic20nano_top_tn9k_lcd.sdc │ │ └── vic20nano_top_tn9k_lcd.vhd │ ├── primer20k │ │ ├── ddr3_controller.v │ │ ├── ddr3_tester.v │ │ ├── memory_controller.v │ │ ├── memtest.sv │ │ ├── vic20nano_top_tp20k.cst │ │ ├── vic20nano_top_tp20k.sdc │ │ └── vic20nano_top_tp20k.vhd │ ├── primer20k_lcd │ │ ├── vic20nano_top_tp20k_lcd.cst │ │ ├── vic20nano_top_tp20k_lcd.sdc │ │ └── vic20nano_top_tp20k_lcd.vhd │ └── primer25k │ │ ├── vic20nano_top_tp25k.cst │ │ ├── vic20nano_top_tp25k.sdc │ │ └── vic20nano_top_tp25k.vhd ├── via6522.vhd ├── vic20.vhd ├── vic20_clocks.vhd ├── vic20_keyboard.vhd ├── vic20_tp25k.vhd ├── vic20nano_top_tn20k.cst ├── vic20nano_top_tn20k.sdc └── vic20nano_top_tn20k.vhd ├── tools ├── bin2mi.c └── bin2mi.exe ├── vic20nano_console138k_bl616.gprj ├── vic20nano_console60k.gprj ├── vic20nano_console60k_bl616.gprj ├── vic20nano_tm138k.gprj ├── vic20nano_tm138k_lcd.gprj ├── vic20nano_tm138kpro_bl616.gprj ├── vic20nano_tm60k.gprj ├── vic20nano_tm60k_lcd.gprj ├── vic20nano_tn20k.gprj ├── vic20nano_tn20k_bl616.gprj ├── vic20nano_tn20k_lcd.gprj ├── vic20nano_tn9k.gprj ├── vic20nano_tn9k_lcd.gprj ├── vic20nano_tp20k.gprj ├── vic20nano_tp20k_lcd.gprj └── vic20nano_tp25k.gprj /.assets/add_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/add_device.png -------------------------------------------------------------------------------- /.assets/audiofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/audiofilter.png -------------------------------------------------------------------------------- /.assets/buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/buff.png -------------------------------------------------------------------------------- /.assets/bufffinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/bufffinish.png -------------------------------------------------------------------------------- /.assets/buffstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/buffstart.png -------------------------------------------------------------------------------- /.assets/c64_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/c64_flash.png -------------------------------------------------------------------------------- /.assets/console60k_m0s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/console60k_m0s.png -------------------------------------------------------------------------------- /.assets/console60k_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/console60k_zero.png -------------------------------------------------------------------------------- /.assets/controller-pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/controller-pinout.jpg -------------------------------------------------------------------------------- /.assets/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/dolphin.png -------------------------------------------------------------------------------- /.assets/ds2_m0s_pmod_tm138kpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/ds2_m0s_pmod_tm138kpro.png -------------------------------------------------------------------------------- /.assets/flash_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/flash_success.png -------------------------------------------------------------------------------- /.assets/gowin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/gowin.jpg -------------------------------------------------------------------------------- /.assets/gowin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/gowin1.jpg -------------------------------------------------------------------------------- /.assets/keymap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/keymap.gif -------------------------------------------------------------------------------- /.assets/m0s_pmod_tp25k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/m0s_pmod_tp25k.jpg -------------------------------------------------------------------------------- /.assets/mega60k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/mega60k.png -------------------------------------------------------------------------------- /.assets/no device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/no device.png -------------------------------------------------------------------------------- /.assets/primer20k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/primer20k.png -------------------------------------------------------------------------------- /.assets/primer25k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/primer25k.png -------------------------------------------------------------------------------- /.assets/sdram_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/sdram_mod.png -------------------------------------------------------------------------------- /.assets/switch_1_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/switch_1_on.png -------------------------------------------------------------------------------- /.assets/tm138k_lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/tm138k_lcd.png -------------------------------------------------------------------------------- /.assets/tn9k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/tn9k.png -------------------------------------------------------------------------------- /.assets/tp20k_lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/tp20k_lcd.png -------------------------------------------------------------------------------- /.assets/vic20-Joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20-Joystick.png -------------------------------------------------------------------------------- /.assets/vic20_tn9k_rework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tn9k_rework.png -------------------------------------------------------------------------------- /.assets/vic20_tn9k_rework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tn9k_rework.svg -------------------------------------------------------------------------------- /.assets/vic20_tn9k_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tn9k_top.svg -------------------------------------------------------------------------------- /.assets/vic20_tp20k_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_bot.png -------------------------------------------------------------------------------- /.assets/vic20_tp20k_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_bot.svg -------------------------------------------------------------------------------- /.assets/vic20_tp20k_rework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_rework.png -------------------------------------------------------------------------------- /.assets/vic20_tp20k_rework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_rework.svg -------------------------------------------------------------------------------- /.assets/vic20_tp20k_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_top.png -------------------------------------------------------------------------------- /.assets/vic20_tp20k_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20_tp20k_top.svg -------------------------------------------------------------------------------- /.assets/vic20nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/vic20nano.png -------------------------------------------------------------------------------- /.assets/wiring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/wiring.svg -------------------------------------------------------------------------------- /.assets/wiring_spi_irq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/wiring_spi_irq.png -------------------------------------------------------------------------------- /.assets/wiring_tn20k_lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.assets/wiring_tn20k_lcd.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/.gitmodules -------------------------------------------------------------------------------- /INSTALLATION_WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/INSTALLATION_WINDOWS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/README.md -------------------------------------------------------------------------------- /TANG_CONSOLE_60K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_CONSOLE_60K.md -------------------------------------------------------------------------------- /TANG_LCD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_LCD.md -------------------------------------------------------------------------------- /TANG_MEGA_138K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_MEGA_138K.md -------------------------------------------------------------------------------- /TANG_MEGA_60K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_MEGA_60K.md -------------------------------------------------------------------------------- /TANG_NANO_9K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_NANO_9K.md -------------------------------------------------------------------------------- /TANG_PRIMER_20K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_PRIMER_20K.md -------------------------------------------------------------------------------- /TANG_PRIMER_25K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/TANG_PRIMER_25K.md -------------------------------------------------------------------------------- /gw_sh.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/gw_sh.grc -------------------------------------------------------------------------------- /impl/project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/project.tcl -------------------------------------------------------------------------------- /impl/vic20nano_console138k_bl616_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_console138k_bl616_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_console60k_bl616_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_console60k_bl616_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_console60k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_console60k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tm138k_lcd_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tm138k_lcd_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tm138k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tm138k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tm138kpro_bl616_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tm138kpro_bl616_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tm60k_lcd_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tm60k_lcd_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tm60k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tm60k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tn20k_bl616_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tn20k_bl616_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tn20k_lcd_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tn20k_lcd_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tn20k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tn20k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tn9k_lcd_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tn9k_lcd_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tn9k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tn9k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tp20k_lcd_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tp20k_lcd_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tp20k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tp20k_process_config.json -------------------------------------------------------------------------------- /impl/vic20nano_tp25k_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/impl/vic20nano_tp25k_process_config.json -------------------------------------------------------------------------------- /src/c1530.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1530.vhd -------------------------------------------------------------------------------- /src/c1541/c1541_logic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1541/c1541_logic.vhd -------------------------------------------------------------------------------- /src/c1541/c1541_sd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1541/c1541_sd.vhd -------------------------------------------------------------------------------- /src/c1541/gcr_floppy.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1541/gcr_floppy.vhd -------------------------------------------------------------------------------- /src/c1541/mist_sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1541/mist_sd_card.sv -------------------------------------------------------------------------------- /src/c1541/via6522.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/c1541/via6522.vhd -------------------------------------------------------------------------------- /src/dac.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/dac.vhd -------------------------------------------------------------------------------- /src/dualshock2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/dualshock2.v -------------------------------------------------------------------------------- /src/fifo_sc_hs/FIFO_SC_HS_Top_gw5a.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/fifo_sc_hs/FIFO_SC_HS_Top_gw5a.ipc -------------------------------------------------------------------------------- /src/fifo_sc_hs/FIFO_SC_HS_Top_gw5a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/fifo_sc_hs/FIFO_SC_HS_Top_gw5a.vhd -------------------------------------------------------------------------------- /src/fifo_sc_hs/fifo_sc_hs.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/fifo_sc_hs/fifo_sc_hs.ipc -------------------------------------------------------------------------------- /src/fifo_sc_hs/fifo_sc_hs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/fifo_sc_hs/fifo_sc_hs.vhd -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_1k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_1k.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_1k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_1k.vhd -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_1k_x4.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_1k_x4.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_1k_x4.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_1k_x4.vhd -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_2k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_2k.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_2k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_2k.vhd -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_8k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_8k.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_8k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_8k.vhd -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_track_buffer_b.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_track_buffer_b.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_track_buffer_b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_track_buffer_b.v -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_trkbuf.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_trkbuf.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/gowin_dpb_trkbuf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/gowin_dpb_trkbuf.v -------------------------------------------------------------------------------- /src/gowin_dpb/sector_dpram.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/sector_dpram.ipc -------------------------------------------------------------------------------- /src/gowin_dpb/sector_dpram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_dpb/sector_dpram.v -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_flash.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_flash.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_flash.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_flash.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_ntsc.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_ntsc.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_ntsc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_ntsc.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_pal.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_pal.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_138k_pal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_138k_pal.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_flash.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_flash.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_flash.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_flash.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_ntsc.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_ntsc.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_ntsc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_ntsc.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_pal.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_pal.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_60k_pal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_60k_pal.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_flash.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_flash.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_flash.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_flash.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_ntsc.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_ntsc.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_ntsc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_ntsc.vhd -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_pal.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_pal.ipc -------------------------------------------------------------------------------- /src/gowin_pll/gowin_pll_pal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_pll/gowin_pll_pal.vhd -------------------------------------------------------------------------------- /src/gowin_prom/gowin_prom_basic.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_prom/gowin_prom_basic.ipc -------------------------------------------------------------------------------- /src/gowin_prom/gowin_prom_basic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_prom/gowin_prom_basic.vhd -------------------------------------------------------------------------------- /src/gowin_prom/gowin_prom_char.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_prom/gowin_prom_char.ipc -------------------------------------------------------------------------------- /src/gowin_prom/gowin_prom_char.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_prom/gowin_prom_char.vhd -------------------------------------------------------------------------------- /src/gowin_rpll/gowin_rpll.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_rpll/gowin_rpll.ipc -------------------------------------------------------------------------------- /src/gowin_rpll/gowin_rpll.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_rpll/gowin_rpll.vhd -------------------------------------------------------------------------------- /src/gowin_sdpb/gowin_sdpb_kernal_8k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sdpb/gowin_sdpb_kernal_8k.ipc -------------------------------------------------------------------------------- /src/gowin_sdpb/gowin_sdpb_kernal_8k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sdpb/gowin_sdpb_kernal_8k.vhd -------------------------------------------------------------------------------- /src/gowin_sdpb/gowin_sdpb_kernal_8k_gw5a.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sdpb/gowin_sdpb_kernal_8k_gw5a.ipc -------------------------------------------------------------------------------- /src/gowin_sdpb/gowin_sdpb_kernal_8k_gw5a.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sdpb/gowin_sdpb_kernal_8k_gw5a.vhd -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_2k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_2k.ipc -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_2k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_2k.vhd -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_8k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_8k.ipc -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_8k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_8k.vhd -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_cram.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_cram.ipc -------------------------------------------------------------------------------- /src/gowin_sp/gowin_sp_cram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp/gowin_sp_cram.vhd -------------------------------------------------------------------------------- /src/gowin_sp_1kb/gowin_sp_1kb.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp_1kb/gowin_sp_1kb.ipc -------------------------------------------------------------------------------- /src/gowin_sp_1kb/gowin_sp_1kb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp_1kb/gowin_sp_1kb.vhd -------------------------------------------------------------------------------- /src/gowin_sp_2kb/gowin_sp_2kb.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp_2kb/gowin_sp_2kb.ipc -------------------------------------------------------------------------------- /src/gowin_sp_2kb/gowin_sp_2kb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/gowin_sp_2kb/gowin_sp_2kb.vhd -------------------------------------------------------------------------------- /src/hdmi/audio_clock_regeneration_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/audio_clock_regeneration_packet.sv -------------------------------------------------------------------------------- /src/hdmi/audio_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/audio_info_frame.sv -------------------------------------------------------------------------------- /src/hdmi/audio_sample_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/audio_sample_packet.sv -------------------------------------------------------------------------------- /src/hdmi/auxiliary_video_information_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/auxiliary_video_information_info_frame.sv -------------------------------------------------------------------------------- /src/hdmi/hdmi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/hdmi.sv -------------------------------------------------------------------------------- /src/hdmi/packet_assembler.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/packet_assembler.sv -------------------------------------------------------------------------------- /src/hdmi/packet_picker.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/packet_picker.sv -------------------------------------------------------------------------------- /src/hdmi/serializer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/serializer.sv -------------------------------------------------------------------------------- /src/hdmi/source_product_description_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/source_product_description_info_frame.sv -------------------------------------------------------------------------------- /src/hdmi/tmds_channel.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/hdmi/tmds_channel.sv -------------------------------------------------------------------------------- /src/loader_sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/loader_sd_card.sv -------------------------------------------------------------------------------- /src/m6522.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/m6522.vhd -------------------------------------------------------------------------------- /src/m6561.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/m6561.vhd -------------------------------------------------------------------------------- /src/megacart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/megacart.v -------------------------------------------------------------------------------- /src/megacart_nvram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/megacart_nvram.v -------------------------------------------------------------------------------- /src/misc/flash_dspi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/flash_dspi.v -------------------------------------------------------------------------------- /src/misc/flash_dspi_gw5a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/flash_dspi_gw5a.v -------------------------------------------------------------------------------- /src/misc/hid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/hid.v -------------------------------------------------------------------------------- /src/misc/mcu_spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/mcu_spi.v -------------------------------------------------------------------------------- /src/misc/osd_u8g2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/osd_u8g2.v -------------------------------------------------------------------------------- /src/misc/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/scandoubler.v -------------------------------------------------------------------------------- /src/misc/sd_card.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/sd_card.v -------------------------------------------------------------------------------- /src/misc/sd_rw.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/sd_rw.v -------------------------------------------------------------------------------- /src/misc/sdcmd_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/sdcmd_ctrl.v -------------------------------------------------------------------------------- /src/misc/sysctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/sysctrl.v -------------------------------------------------------------------------------- /src/misc/vic20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/vic20.xml -------------------------------------------------------------------------------- /src/misc/vic20_keymap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/vic20_keymap.v -------------------------------------------------------------------------------- /src/misc/vic20_xml.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/vic20_xml.hex -------------------------------------------------------------------------------- /src/misc/video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/video.v -------------------------------------------------------------------------------- /src/misc/video_analyzer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/video_analyzer.v -------------------------------------------------------------------------------- /src/misc/video_lcd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/video_lcd.v -------------------------------------------------------------------------------- /src/misc/ws2812.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/ws2812.v -------------------------------------------------------------------------------- /src/misc/xxd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/misc/xxd.exe -------------------------------------------------------------------------------- /src/psram_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/psram_controller.v -------------------------------------------------------------------------------- /src/ram_conf_1024x4.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/ram_conf_1024x4.vhd -------------------------------------------------------------------------------- /src/ram_conf_1024x8.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/ram_conf_1024x8.vhd -------------------------------------------------------------------------------- /src/ram_conf_2048x8.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/ram_conf_2048x8.vhd -------------------------------------------------------------------------------- /src/ram_conf_8192x8.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/ram_conf_8192x8.vhd -------------------------------------------------------------------------------- /src/sdram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/sdram.sv -------------------------------------------------------------------------------- /src/sdram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/sdram.v -------------------------------------------------------------------------------- /src/sdram8.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/sdram8.sv -------------------------------------------------------------------------------- /src/sdram8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/sdram8.v -------------------------------------------------------------------------------- /src/t65/T65.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/t65/T65.vhd -------------------------------------------------------------------------------- /src/t65/T65_ALU.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/t65/T65_ALU.vhd -------------------------------------------------------------------------------- /src/t65/T65_MCode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/t65/T65_MCode.vhd -------------------------------------------------------------------------------- /src/t65/T65_Pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/t65/T65_Pack.vhd -------------------------------------------------------------------------------- /src/tang/console138k_bl616/vic20nano_top.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console138k_bl616/vic20nano_top.cst -------------------------------------------------------------------------------- /src/tang/console138k_bl616/vic20nano_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console138k_bl616/vic20nano_top.sdc -------------------------------------------------------------------------------- /src/tang/console138k_bl616/vic20nano_top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console138k_bl616/vic20nano_top.vhd -------------------------------------------------------------------------------- /src/tang/console60k/vic20nano_top_tc60k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k/vic20nano_top_tc60k.cst -------------------------------------------------------------------------------- /src/tang/console60k/vic20nano_top_tc60k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k/vic20nano_top_tc60k.sdc -------------------------------------------------------------------------------- /src/tang/console60k/vic20nano_top_tc60k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k/vic20nano_top_tc60k.vhd -------------------------------------------------------------------------------- /src/tang/console60k/video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k/video.v -------------------------------------------------------------------------------- /src/tang/console60k_bl616/vic20nano_top_tc60k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k_bl616/vic20nano_top_tc60k.cst -------------------------------------------------------------------------------- /src/tang/console60k_bl616/vic20nano_top_tc60k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k_bl616/vic20nano_top_tc60k.sdc -------------------------------------------------------------------------------- /src/tang/console60k_bl616/vic20nano_top_tc60k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/console60k_bl616/vic20nano_top_tc60k.vhd -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k.cst -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k.sdc -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k.vhd -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k_lcd.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k_lcd.cst -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k_lcd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k_lcd.sdc -------------------------------------------------------------------------------- /src/tang/mega138k/vic20nano_top_tm138k_lcd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138k/vic20nano_top_tm138k_lcd.vhd -------------------------------------------------------------------------------- /src/tang/mega138kpro_bl616/vic20nano_top_tm138k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138kpro_bl616/vic20nano_top_tm138k.cst -------------------------------------------------------------------------------- /src/tang/mega138kpro_bl616/vic20nano_top_tm138k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138kpro_bl616/vic20nano_top_tm138k.sdc -------------------------------------------------------------------------------- /src/tang/mega138kpro_bl616/vic20nano_top_tm138k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega138kpro_bl616/vic20nano_top_tm138k.vhd -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k.cst -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k.sdc -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k.vhd -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k_lcd.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k_lcd.cst -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k_lcd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k_lcd.sdc -------------------------------------------------------------------------------- /src/tang/mega60k/vic20nano_top_tm60k_lcd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/mega60k/vic20nano_top_tm60k_lcd.vhd -------------------------------------------------------------------------------- /src/tang/nano20k_bl616/vic20nano_top_tn20k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_bl616/vic20nano_top_tn20k.cst -------------------------------------------------------------------------------- /src/tang/nano20k_bl616/vic20nano_top_tn20k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_bl616/vic20nano_top_tn20k.sdc -------------------------------------------------------------------------------- /src/tang/nano20k_bl616/vic20nano_top_tn20k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_bl616/vic20nano_top_tn20k.vhd -------------------------------------------------------------------------------- /src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.cst -------------------------------------------------------------------------------- /src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.sdc -------------------------------------------------------------------------------- /src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano20k_lcd/vic20nano_top_tn20k_lcd.vhd -------------------------------------------------------------------------------- /src/tang/nano9k/flash_dspi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/flash_dspi.v -------------------------------------------------------------------------------- /src/tang/nano9k/psram_controller.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/psram_controller.vhd -------------------------------------------------------------------------------- /src/tang/nano9k/vic20_tn9k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/vic20_tn9k.vhd -------------------------------------------------------------------------------- /src/tang/nano9k/vic20nano_top_tn9k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/vic20nano_top_tn9k.cst -------------------------------------------------------------------------------- /src/tang/nano9k/vic20nano_top_tn9k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/vic20nano_top_tn9k.sdc -------------------------------------------------------------------------------- /src/tang/nano9k/vic20nano_top_tn9k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k/vic20nano_top_tn9k.vhd -------------------------------------------------------------------------------- /src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.cst -------------------------------------------------------------------------------- /src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.sdc -------------------------------------------------------------------------------- /src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/nano9k_lcd/vic20nano_top_tn9k_lcd.vhd -------------------------------------------------------------------------------- /src/tang/primer20k/ddr3_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/ddr3_controller.v -------------------------------------------------------------------------------- /src/tang/primer20k/ddr3_tester.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/ddr3_tester.v -------------------------------------------------------------------------------- /src/tang/primer20k/memory_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/memory_controller.v -------------------------------------------------------------------------------- /src/tang/primer20k/memtest.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/memtest.sv -------------------------------------------------------------------------------- /src/tang/primer20k/vic20nano_top_tp20k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/vic20nano_top_tp20k.cst -------------------------------------------------------------------------------- /src/tang/primer20k/vic20nano_top_tp20k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/vic20nano_top_tp20k.sdc -------------------------------------------------------------------------------- /src/tang/primer20k/vic20nano_top_tp20k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k/vic20nano_top_tp20k.vhd -------------------------------------------------------------------------------- /src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.cst -------------------------------------------------------------------------------- /src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.sdc -------------------------------------------------------------------------------- /src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer20k_lcd/vic20nano_top_tp20k_lcd.vhd -------------------------------------------------------------------------------- /src/tang/primer25k/vic20nano_top_tp25k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer25k/vic20nano_top_tp25k.cst -------------------------------------------------------------------------------- /src/tang/primer25k/vic20nano_top_tp25k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer25k/vic20nano_top_tp25k.sdc -------------------------------------------------------------------------------- /src/tang/primer25k/vic20nano_top_tp25k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/tang/primer25k/vic20nano_top_tp25k.vhd -------------------------------------------------------------------------------- /src/via6522.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/via6522.vhd -------------------------------------------------------------------------------- /src/vic20.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20.vhd -------------------------------------------------------------------------------- /src/vic20_clocks.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20_clocks.vhd -------------------------------------------------------------------------------- /src/vic20_keyboard.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20_keyboard.vhd -------------------------------------------------------------------------------- /src/vic20_tp25k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20_tp25k.vhd -------------------------------------------------------------------------------- /src/vic20nano_top_tn20k.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20nano_top_tn20k.cst -------------------------------------------------------------------------------- /src/vic20nano_top_tn20k.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20nano_top_tn20k.sdc -------------------------------------------------------------------------------- /src/vic20nano_top_tn20k.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/src/vic20nano_top_tn20k.vhd -------------------------------------------------------------------------------- /tools/bin2mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/tools/bin2mi.c -------------------------------------------------------------------------------- /tools/bin2mi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/tools/bin2mi.exe -------------------------------------------------------------------------------- /vic20nano_console138k_bl616.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_console138k_bl616.gprj -------------------------------------------------------------------------------- /vic20nano_console60k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_console60k.gprj -------------------------------------------------------------------------------- /vic20nano_console60k_bl616.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_console60k_bl616.gprj -------------------------------------------------------------------------------- /vic20nano_tm138k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tm138k.gprj -------------------------------------------------------------------------------- /vic20nano_tm138k_lcd.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tm138k_lcd.gprj -------------------------------------------------------------------------------- /vic20nano_tm138kpro_bl616.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tm138kpro_bl616.gprj -------------------------------------------------------------------------------- /vic20nano_tm60k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tm60k.gprj -------------------------------------------------------------------------------- /vic20nano_tm60k_lcd.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tm60k_lcd.gprj -------------------------------------------------------------------------------- /vic20nano_tn20k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tn20k.gprj -------------------------------------------------------------------------------- /vic20nano_tn20k_bl616.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tn20k_bl616.gprj -------------------------------------------------------------------------------- /vic20nano_tn20k_lcd.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tn20k_lcd.gprj -------------------------------------------------------------------------------- /vic20nano_tn9k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tn9k.gprj -------------------------------------------------------------------------------- /vic20nano_tn9k_lcd.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tn9k_lcd.gprj -------------------------------------------------------------------------------- /vic20nano_tp20k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tp20k.gprj -------------------------------------------------------------------------------- /vic20nano_tp20k_lcd.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tp20k_lcd.gprj -------------------------------------------------------------------------------- /vic20nano_tp25k.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTle-Dev/VIC20Nano/HEAD/vic20nano_tp25k.gprj --------------------------------------------------------------------------------