├── .gitignore ├── Intv.qpf ├── Intv.qsf ├── Intv.srf ├── README.md ├── files.qip ├── intv.sv ├── releases ├── Intellivision_20210809.rbf ├── Intellivision_20211025.rbf ├── Intellivision_20230117.rbf ├── Intellivision_20230310.rbf ├── Intellivision_20250325.rbf └── Intellivision_20250903.rbf ├── rtl ├── base │ └── base_pack.vhd ├── intv │ ├── cp1610.vhd │ ├── cp1610_pack.vhd │ ├── intv.vhd │ ├── ivoice.vhd │ ├── jlp.vhd │ ├── snd.vhd │ └── stic.vhd ├── pll.13.qip ├── pll.qip ├── pll.v ├── pll │ ├── pll_0002.qip │ ├── pll_0002.v │ └── pll_0002_q13.qip └── pll_q17.qip └── sys ├── alsa.sv ├── arcade_video.v ├── ascal.vhd ├── audio_out.v ├── build_id.tcl ├── ddr_svc.sv ├── f2sdram_safe_terminator.sv ├── gamma_corr.sv ├── hps_io.sv ├── 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 ├── altera_pll_reconfig_core.v ├── altera_pll_reconfig_top.v ├── pll_cfg.v └── pll_cfg_hdmi.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 ├── shadowmask.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_freezer.sv ├── video_mixer.sv └── yc_out.sv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/.gitignore -------------------------------------------------------------------------------- /Intv.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/Intv.qpf -------------------------------------------------------------------------------- /Intv.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/Intv.qsf -------------------------------------------------------------------------------- /Intv.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/Intv.srf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/README.md -------------------------------------------------------------------------------- /files.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/files.qip -------------------------------------------------------------------------------- /intv.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/intv.sv -------------------------------------------------------------------------------- /releases/Intellivision_20210809.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20210809.rbf -------------------------------------------------------------------------------- /releases/Intellivision_20211025.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20211025.rbf -------------------------------------------------------------------------------- /releases/Intellivision_20230117.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20230117.rbf -------------------------------------------------------------------------------- /releases/Intellivision_20230310.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20230310.rbf -------------------------------------------------------------------------------- /releases/Intellivision_20250325.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20250325.rbf -------------------------------------------------------------------------------- /releases/Intellivision_20250903.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/releases/Intellivision_20250903.rbf -------------------------------------------------------------------------------- /rtl/base/base_pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/base/base_pack.vhd -------------------------------------------------------------------------------- /rtl/intv/cp1610.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/cp1610.vhd -------------------------------------------------------------------------------- /rtl/intv/cp1610_pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/cp1610_pack.vhd -------------------------------------------------------------------------------- /rtl/intv/intv.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/intv.vhd -------------------------------------------------------------------------------- /rtl/intv/ivoice.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/ivoice.vhd -------------------------------------------------------------------------------- /rtl/intv/jlp.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/jlp.vhd -------------------------------------------------------------------------------- /rtl/intv/snd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/snd.vhd -------------------------------------------------------------------------------- /rtl/intv/stic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/intv/stic.vhd -------------------------------------------------------------------------------- /rtl/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll.13.qip -------------------------------------------------------------------------------- /rtl/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll.qip -------------------------------------------------------------------------------- /rtl/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll/pll_0002.qip -------------------------------------------------------------------------------- /rtl/pll/pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll/pll_0002.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll/pll_0002_q13.qip -------------------------------------------------------------------------------- /rtl/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/rtl/pll_q17.qip -------------------------------------------------------------------------------- /sys/alsa.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/alsa.sv -------------------------------------------------------------------------------- /sys/arcade_video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/arcade_video.v -------------------------------------------------------------------------------- /sys/ascal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/ascal.vhd -------------------------------------------------------------------------------- /sys/audio_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/audio_out.v -------------------------------------------------------------------------------- /sys/build_id.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/build_id.tcl -------------------------------------------------------------------------------- /sys/ddr_svc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/ddr_svc.sv -------------------------------------------------------------------------------- /sys/f2sdram_safe_terminator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/f2sdram_safe_terminator.sv -------------------------------------------------------------------------------- /sys/gamma_corr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/gamma_corr.sv -------------------------------------------------------------------------------- /sys/hps_io.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/hps_io.sv -------------------------------------------------------------------------------- /sys/hq2x.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/hq2x.sv -------------------------------------------------------------------------------- /sys/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/i2c.v -------------------------------------------------------------------------------- /sys/i2s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/i2s.v -------------------------------------------------------------------------------- /sys/iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/iir_filter.v -------------------------------------------------------------------------------- /sys/ltc2308.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/ltc2308.sv -------------------------------------------------------------------------------- /sys/math.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/math.sv -------------------------------------------------------------------------------- /sys/mcp23009.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/mcp23009.sv -------------------------------------------------------------------------------- /sys/mt32pi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/mt32pi.sv -------------------------------------------------------------------------------- /sys/osd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/osd.v -------------------------------------------------------------------------------- /sys/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_audio.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_audio.qip -------------------------------------------------------------------------------- /sys/pll_audio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_audio.v -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.qip -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.v -------------------------------------------------------------------------------- /sys/pll_cfg.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_cfg.qip -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_core.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_top.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_cfg/pll_cfg.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_cfg/pll_cfg_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi.13.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.qip -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.v -------------------------------------------------------------------------------- /sys/pll_hdmi_adj.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_hdmi_adj.vhd -------------------------------------------------------------------------------- /sys/pll_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_q13.qip -------------------------------------------------------------------------------- /sys/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/pll_q17.qip -------------------------------------------------------------------------------- /sys/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/scandoubler.v -------------------------------------------------------------------------------- /sys/scanlines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/scanlines.v -------------------------------------------------------------------------------- /sys/sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sd_card.sv -------------------------------------------------------------------------------- /sys/shadowmask.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/shadowmask.sv -------------------------------------------------------------------------------- /sys/sigma_delta_dac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sigma_delta_dac.v -------------------------------------------------------------------------------- /sys/spdif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/spdif.v -------------------------------------------------------------------------------- /sys/sys.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys.qip -------------------------------------------------------------------------------- /sys/sys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys.tcl -------------------------------------------------------------------------------- /sys/sys_analog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys_analog.tcl -------------------------------------------------------------------------------- /sys/sys_dual_sdram.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys_dual_sdram.tcl -------------------------------------------------------------------------------- /sys/sys_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys_top.sdc -------------------------------------------------------------------------------- /sys/sys_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sys_top.v -------------------------------------------------------------------------------- /sys/sysmem.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/sysmem.sv -------------------------------------------------------------------------------- /sys/vga_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/vga_out.sv -------------------------------------------------------------------------------- /sys/video_cleaner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/video_cleaner.sv -------------------------------------------------------------------------------- /sys/video_freak.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/video_freak.sv -------------------------------------------------------------------------------- /sys/video_freezer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/video_freezer.sv -------------------------------------------------------------------------------- /sys/video_mixer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/video_mixer.sv -------------------------------------------------------------------------------- /sys/yc_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Intv_MiSTer/HEAD/sys/yc_out.sv --------------------------------------------------------------------------------