├── .gitignore ├── Gigatron.qpf ├── Gigatron.qsf ├── Gigatron.sdc ├── Gigatron.srf ├── Gigatron.sv ├── Gigatron_Q13.qpf ├── Gigatron_Q13.qsf ├── Gigatron_Q13.srf ├── LICENSE ├── MENLO_COPYRIGHT.TXT ├── Readme.md ├── clean.bat ├── files.qip ├── releases └── Gigatron_beta_20210523.rbf ├── rtl ├── Keyboard.v ├── ROMv1_verilog_data.txt ├── ROMv2_verilog_data.txt ├── ROMv4_verilog_data.txt ├── ROMv5a_verilog_data.txt ├── gigatron_eeprom_from_file.sv ├── gigatron_onefile.sv ├── gigatron_option_rom.sv ├── gigatron_ram.qip ├── gigatron_ram.v ├── gigatron_ram_bb.v ├── gigatron_ram_inst.v ├── gigatron_shell.sv ├── gt1_tetris_verilog_data.txt ├── menlo_babelfish.sv ├── pll.qip ├── pll.v ├── pll │ ├── pll_0002.qip │ ├── pll_0002.v │ └── pll_0002_q13.qip ├── spram.sv ├── vga_controller_with_sprite.sv └── x74xx153.sv ├── sys ├── alsa.sv ├── arcade_video.v ├── ascal.vhd ├── audio_out.v ├── build_id.tcl ├── ddr_svc.sv ├── f2sdram_safe_terminator.sv ├── gamma_corr.sv ├── hdmi_config.sv ├── hps_io.v ├── hq2x.sv ├── i2c.v ├── i2s.v ├── iir_filter.v ├── ltc2308.sv ├── math.sv ├── mcp23009.sv ├── mt32pi.sv ├── osd.v ├── pll.13.qip ├── pll_audio.13.qip ├── pll_audio.qip ├── pll_audio.v ├── pll_audio │ ├── pll_audio_0002.qip │ └── pll_audio_0002.v ├── pll_cfg.qip ├── pll_cfg.v ├── pll_cfg │ ├── altera_pll_reconfig_core.v │ └── altera_pll_reconfig_top.v ├── pll_hdmi.13.qip ├── pll_hdmi.qip ├── pll_hdmi.v ├── pll_hdmi │ ├── pll_hdmi_0002.qip │ └── pll_hdmi_0002.v ├── pll_hdmi_adj.vhd ├── pll_q13.qip ├── pll_q17.qip ├── scandoubler.v ├── scanlines.v ├── sd_card.sv ├── sigma_delta_dac.v ├── spdif.v ├── sys.qip ├── sys.tcl ├── sys_analog.tcl ├── sys_dual_sdram.tcl ├── sys_top.sdc ├── sys_top.v ├── sysmem.sv ├── vga_out.sv ├── video_cleaner.sv ├── video_freak.sv └── video_mixer.sv └── verilator ├── Makefile ├── ROMv1_verilog_data.txt ├── ROMv2_verilog_data.txt ├── ROMv4_verilog_data.txt ├── gt1_tetris_verilog_data.txt ├── imgui.ini ├── sim.sln ├── sim.v ├── sim.vcxproj ├── sim.vcxproj.filters ├── sim.vcxproj.user ├── sim ├── imgui │ ├── ImGuiFileDialog.cpp │ ├── ImGuiFileDialog.h │ ├── ImGuiFileDialogConfig.h │ ├── LICENSE.txt │ ├── dirent │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── README.md │ │ └── dirent.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_sdl.cpp │ ├── imgui_impl_sdl.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_memory_editor.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── implot.cpp │ ├── implot.h │ ├── implot_demo.cpp │ ├── implot_internal.h │ ├── implot_items.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── sim_audio.cpp ├── sim_audio.h ├── sim_bus.cpp ├── sim_bus.h ├── sim_clock.cpp ├── sim_clock.h ├── sim_console.cpp ├── sim_console.h ├── sim_input.cpp ├── sim_input.h ├── sim_video.cpp ├── sim_video.h └── vinc │ ├── .gitignore │ ├── gtkwave │ ├── fastlz.c │ ├── fastlz.h │ ├── fst_config.h │ ├── fst_win_unistd.h │ ├── fstapi.c │ ├── fstapi.h │ ├── lz4.c │ ├── lz4.h │ └── wavealloca.h │ ├── verilated.cpp │ ├── verilated.h │ ├── verilated.mk.in │ ├── verilated.v │ ├── verilated_config.h.in │ ├── verilated_cov.cpp │ ├── verilated_cov.h │ ├── verilated_cov_key.h │ ├── verilated_dpi.cpp │ ├── verilated_dpi.h │ ├── verilated_fst_c.cpp │ ├── verilated_fst_c.h │ ├── verilated_fst_sc.cpp │ ├── verilated_fst_sc.h │ ├── verilated_heavy.h │ ├── verilated_imp.h │ ├── verilated_intrinsics.h │ ├── verilated_save.cpp │ ├── verilated_save.h │ ├── verilated_sc.h │ ├── verilated_sym_props.h │ ├── verilated_syms.h │ ├── verilated_threads.cpp │ ├── verilated_threads.h │ ├── verilated_trace.h │ ├── verilated_trace_defs.h │ ├── verilated_trace_imp.cpp │ ├── verilated_unordered_set_map.h │ ├── verilated_vcd_c.cpp │ ├── verilated_vcd_c.h │ ├── verilated_vcd_sc.cpp │ ├── verilated_vcd_sc.h │ ├── verilated_vpi.cpp │ ├── verilated_vpi.h │ ├── verilatedos.h │ └── vltstd │ ├── svdpi.h │ └── vpi_user.h ├── sim_main.cpp ├── test └── verilate.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/.gitignore -------------------------------------------------------------------------------- /Gigatron.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron.qpf -------------------------------------------------------------------------------- /Gigatron.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron.qsf -------------------------------------------------------------------------------- /Gigatron.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron.sdc -------------------------------------------------------------------------------- /Gigatron.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron.srf -------------------------------------------------------------------------------- /Gigatron.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron.sv -------------------------------------------------------------------------------- /Gigatron_Q13.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron_Q13.qpf -------------------------------------------------------------------------------- /Gigatron_Q13.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron_Q13.qsf -------------------------------------------------------------------------------- /Gigatron_Q13.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Gigatron_Q13.srf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/LICENSE -------------------------------------------------------------------------------- /MENLO_COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/MENLO_COPYRIGHT.TXT -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/Readme.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/clean.bat -------------------------------------------------------------------------------- /files.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/files.qip -------------------------------------------------------------------------------- /releases/Gigatron_beta_20210523.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/releases/Gigatron_beta_20210523.rbf -------------------------------------------------------------------------------- /rtl/Keyboard.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/Keyboard.v -------------------------------------------------------------------------------- /rtl/ROMv1_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/ROMv1_verilog_data.txt -------------------------------------------------------------------------------- /rtl/ROMv2_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/ROMv2_verilog_data.txt -------------------------------------------------------------------------------- /rtl/ROMv4_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/ROMv4_verilog_data.txt -------------------------------------------------------------------------------- /rtl/ROMv5a_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/ROMv5a_verilog_data.txt -------------------------------------------------------------------------------- /rtl/gigatron_eeprom_from_file.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_eeprom_from_file.sv -------------------------------------------------------------------------------- /rtl/gigatron_onefile.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_onefile.sv -------------------------------------------------------------------------------- /rtl/gigatron_option_rom.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_option_rom.sv -------------------------------------------------------------------------------- /rtl/gigatron_ram.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_ram.qip -------------------------------------------------------------------------------- /rtl/gigatron_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_ram.v -------------------------------------------------------------------------------- /rtl/gigatron_ram_bb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_ram_bb.v -------------------------------------------------------------------------------- /rtl/gigatron_ram_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_ram_inst.v -------------------------------------------------------------------------------- /rtl/gigatron_shell.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gigatron_shell.sv -------------------------------------------------------------------------------- /rtl/gt1_tetris_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/gt1_tetris_verilog_data.txt -------------------------------------------------------------------------------- /rtl/menlo_babelfish.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/menlo_babelfish.sv -------------------------------------------------------------------------------- /rtl/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/pll.qip -------------------------------------------------------------------------------- /rtl/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/pll.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/pll/pll_0002.qip -------------------------------------------------------------------------------- /rtl/pll/pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/pll/pll_0002.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/pll/pll_0002_q13.qip -------------------------------------------------------------------------------- /rtl/spram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/spram.sv -------------------------------------------------------------------------------- /rtl/vga_controller_with_sprite.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/vga_controller_with_sprite.sv -------------------------------------------------------------------------------- /rtl/x74xx153.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/rtl/x74xx153.sv -------------------------------------------------------------------------------- /sys/alsa.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/alsa.sv -------------------------------------------------------------------------------- /sys/arcade_video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/arcade_video.v -------------------------------------------------------------------------------- /sys/ascal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/ascal.vhd -------------------------------------------------------------------------------- /sys/audio_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/audio_out.v -------------------------------------------------------------------------------- /sys/build_id.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/build_id.tcl -------------------------------------------------------------------------------- /sys/ddr_svc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/ddr_svc.sv -------------------------------------------------------------------------------- /sys/f2sdram_safe_terminator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/f2sdram_safe_terminator.sv -------------------------------------------------------------------------------- /sys/gamma_corr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/gamma_corr.sv -------------------------------------------------------------------------------- /sys/hdmi_config.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/hdmi_config.sv -------------------------------------------------------------------------------- /sys/hps_io.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/hps_io.v -------------------------------------------------------------------------------- /sys/hq2x.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/hq2x.sv -------------------------------------------------------------------------------- /sys/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/i2c.v -------------------------------------------------------------------------------- /sys/i2s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/i2s.v -------------------------------------------------------------------------------- /sys/iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/iir_filter.v -------------------------------------------------------------------------------- /sys/ltc2308.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/ltc2308.sv -------------------------------------------------------------------------------- /sys/math.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/math.sv -------------------------------------------------------------------------------- /sys/mcp23009.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/mcp23009.sv -------------------------------------------------------------------------------- /sys/mt32pi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/mt32pi.sv -------------------------------------------------------------------------------- /sys/osd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/osd.v -------------------------------------------------------------------------------- /sys/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_audio.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_audio.qip -------------------------------------------------------------------------------- /sys/pll_audio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_audio.v -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.qip -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.v -------------------------------------------------------------------------------- /sys/pll_cfg.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_cfg.qip -------------------------------------------------------------------------------- /sys/pll_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_cfg.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_core.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_top.v -------------------------------------------------------------------------------- /sys/pll_hdmi.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi.13.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.qip -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.v -------------------------------------------------------------------------------- /sys/pll_hdmi_adj.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_hdmi_adj.vhd -------------------------------------------------------------------------------- /sys/pll_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_q13.qip -------------------------------------------------------------------------------- /sys/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/pll_q17.qip -------------------------------------------------------------------------------- /sys/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/scandoubler.v -------------------------------------------------------------------------------- /sys/scanlines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/scanlines.v -------------------------------------------------------------------------------- /sys/sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sd_card.sv -------------------------------------------------------------------------------- /sys/sigma_delta_dac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sigma_delta_dac.v -------------------------------------------------------------------------------- /sys/spdif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/spdif.v -------------------------------------------------------------------------------- /sys/sys.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys.qip -------------------------------------------------------------------------------- /sys/sys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys.tcl -------------------------------------------------------------------------------- /sys/sys_analog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys_analog.tcl -------------------------------------------------------------------------------- /sys/sys_dual_sdram.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys_dual_sdram.tcl -------------------------------------------------------------------------------- /sys/sys_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys_top.sdc -------------------------------------------------------------------------------- /sys/sys_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sys_top.v -------------------------------------------------------------------------------- /sys/sysmem.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/sysmem.sv -------------------------------------------------------------------------------- /sys/vga_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/vga_out.sv -------------------------------------------------------------------------------- /sys/video_cleaner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/video_cleaner.sv -------------------------------------------------------------------------------- /sys/video_freak.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/video_freak.sv -------------------------------------------------------------------------------- /sys/video_mixer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/sys/video_mixer.sv -------------------------------------------------------------------------------- /verilator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/Makefile -------------------------------------------------------------------------------- /verilator/ROMv1_verilog_data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verilator/ROMv2_verilog_data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verilator/ROMv4_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/ROMv4_verilog_data.txt -------------------------------------------------------------------------------- /verilator/gt1_tetris_verilog_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/gt1_tetris_verilog_data.txt -------------------------------------------------------------------------------- /verilator/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/imgui.ini -------------------------------------------------------------------------------- /verilator/sim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim.sln -------------------------------------------------------------------------------- /verilator/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim.v -------------------------------------------------------------------------------- /verilator/sim.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim.vcxproj -------------------------------------------------------------------------------- /verilator/sim.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim.vcxproj.filters -------------------------------------------------------------------------------- /verilator/sim.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim.vcxproj.user -------------------------------------------------------------------------------- /verilator/sim/imgui/ImGuiFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/ImGuiFileDialog.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/ImGuiFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/ImGuiFileDialog.h -------------------------------------------------------------------------------- /verilator/sim/imgui/ImGuiFileDialogConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/ImGuiFileDialogConfig.h -------------------------------------------------------------------------------- /verilator/sim/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/LICENSE.txt -------------------------------------------------------------------------------- /verilator/sim/imgui/dirent/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/dirent/ChangeLog -------------------------------------------------------------------------------- /verilator/sim/imgui/dirent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/dirent/LICENSE -------------------------------------------------------------------------------- /verilator/sim/imgui/dirent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/dirent/README.md -------------------------------------------------------------------------------- /verilator/sim/imgui/dirent/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/dirent/dirent.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imconfig.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_sdl.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_internal.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_memory_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_memory_editor.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/implot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/implot.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/implot.h -------------------------------------------------------------------------------- /verilator/sim/imgui/implot_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/implot_demo.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/implot_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/implot_internal.h -------------------------------------------------------------------------------- /verilator/sim/imgui/implot_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/implot_items.cpp -------------------------------------------------------------------------------- /verilator/sim/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /verilator/sim/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /verilator/sim/sim_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_audio.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_audio.h -------------------------------------------------------------------------------- /verilator/sim/sim_bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_bus.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_bus.h -------------------------------------------------------------------------------- /verilator/sim/sim_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_clock.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_clock.h -------------------------------------------------------------------------------- /verilator/sim/sim_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_console.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_console.h -------------------------------------------------------------------------------- /verilator/sim/sim_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_input.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_input.h -------------------------------------------------------------------------------- /verilator/sim/sim_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_video.cpp -------------------------------------------------------------------------------- /verilator/sim/sim_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/sim_video.h -------------------------------------------------------------------------------- /verilator/sim/vinc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/.gitignore -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fastlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fastlz.c -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fastlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fastlz.h -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fst_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fst_config.h -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fst_win_unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fst_win_unistd.h -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fstapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fstapi.c -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/fstapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/fstapi.h -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/lz4.c -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/lz4.h -------------------------------------------------------------------------------- /verilator/sim/vinc/gtkwave/wavealloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/gtkwave/wavealloca.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated.mk.in -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated.v -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_config.h.in -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_cov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_cov.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_cov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_cov.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_cov_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_cov_key.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_dpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_dpi.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_dpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_dpi.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_fst_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_fst_c.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_fst_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_fst_c.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_fst_sc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_fst_sc.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_fst_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_fst_sc.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_heavy.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_imp.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_intrinsics.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_save.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_save.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_sc.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_sym_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_sym_props.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_syms.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_threads.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_threads.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_trace.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_trace_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_trace_defs.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_trace_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_trace_imp.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_unordered_set_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_unordered_set_map.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vcd_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vcd_c.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vcd_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vcd_c.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vcd_sc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vcd_sc.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vcd_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vcd_sc.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vpi.cpp -------------------------------------------------------------------------------- /verilator/sim/vinc/verilated_vpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilated_vpi.h -------------------------------------------------------------------------------- /verilator/sim/vinc/verilatedos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/verilatedos.h -------------------------------------------------------------------------------- /verilator/sim/vinc/vltstd/svdpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/vltstd/svdpi.h -------------------------------------------------------------------------------- /verilator/sim/vinc/vltstd/vpi_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim/vinc/vltstd/vpi_user.h -------------------------------------------------------------------------------- /verilator/sim_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/sim_main.cpp -------------------------------------------------------------------------------- /verilator/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/test -------------------------------------------------------------------------------- /verilator/verilate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajattack/Gigatron_MiSTer/HEAD/verilator/verilate.sh --------------------------------------------------------------------------------