├── .gitignore ├── README.md ├── ZX81.qpf ├── ZX81.qsf ├── ZX81.srf ├── ZX81.sv ├── ZX81_Q13.qpf ├── ZX81_Q13.qsf ├── ZX81_Q13.srf ├── clean.bat ├── files.qip ├── releases ├── ZX81_20180829.rbf ├── ZX81_20180830.rbf ├── ZX81_20180903.rbf ├── ZX81_20190309.rbf ├── ZX81_20190719.rbf ├── ZX81_20190928.rbf ├── ZX81_20200513.rbf ├── ZX81_20210206.rbf ├── ZX81_20210228.rbf ├── ZX81_20220216.rbf ├── ZX81_20230301.rbf ├── ZX81_20231018.rbf ├── ZX81_20231208.rbf └── ZX81_20240421.rbf ├── rtl ├── T80 │ ├── T80.qip │ ├── T80.vhd │ ├── T80_ALU.vhd │ ├── T80_MCode.vhd │ ├── T80_Reg.vhd │ ├── T80pa.vhd │ └── T80s.vhd ├── dpram.v ├── keyboard.sv ├── pll.qip ├── pll.v ├── pll │ ├── pll_0002.qip │ └── pll_0002.v ├── ym2149.sv └── zx8x.mif └── 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/ZX81_MiSTer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/README.md -------------------------------------------------------------------------------- /ZX81.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81.qpf -------------------------------------------------------------------------------- /ZX81.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81.qsf -------------------------------------------------------------------------------- /ZX81.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81.srf -------------------------------------------------------------------------------- /ZX81.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81.sv -------------------------------------------------------------------------------- /ZX81_Q13.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81_Q13.qpf -------------------------------------------------------------------------------- /ZX81_Q13.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81_Q13.qsf -------------------------------------------------------------------------------- /ZX81_Q13.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/ZX81_Q13.srf -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/clean.bat -------------------------------------------------------------------------------- /files.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/files.qip -------------------------------------------------------------------------------- /releases/ZX81_20180829.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20180829.rbf -------------------------------------------------------------------------------- /releases/ZX81_20180830.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20180830.rbf -------------------------------------------------------------------------------- /releases/ZX81_20180903.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20180903.rbf -------------------------------------------------------------------------------- /releases/ZX81_20190309.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20190309.rbf -------------------------------------------------------------------------------- /releases/ZX81_20190719.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20190719.rbf -------------------------------------------------------------------------------- /releases/ZX81_20190928.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20190928.rbf -------------------------------------------------------------------------------- /releases/ZX81_20200513.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20200513.rbf -------------------------------------------------------------------------------- /releases/ZX81_20210206.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20210206.rbf -------------------------------------------------------------------------------- /releases/ZX81_20210228.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20210228.rbf -------------------------------------------------------------------------------- /releases/ZX81_20220216.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20220216.rbf -------------------------------------------------------------------------------- /releases/ZX81_20230301.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20230301.rbf -------------------------------------------------------------------------------- /releases/ZX81_20231018.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20231018.rbf -------------------------------------------------------------------------------- /releases/ZX81_20231208.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20231208.rbf -------------------------------------------------------------------------------- /releases/ZX81_20240421.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/releases/ZX81_20240421.rbf -------------------------------------------------------------------------------- /rtl/T80/T80.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80.qip -------------------------------------------------------------------------------- /rtl/T80/T80.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80.vhd -------------------------------------------------------------------------------- /rtl/T80/T80_ALU.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80_ALU.vhd -------------------------------------------------------------------------------- /rtl/T80/T80_MCode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80_MCode.vhd -------------------------------------------------------------------------------- /rtl/T80/T80_Reg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80_Reg.vhd -------------------------------------------------------------------------------- /rtl/T80/T80pa.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80pa.vhd -------------------------------------------------------------------------------- /rtl/T80/T80s.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/T80/T80s.vhd -------------------------------------------------------------------------------- /rtl/dpram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/dpram.v -------------------------------------------------------------------------------- /rtl/keyboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/keyboard.sv -------------------------------------------------------------------------------- /rtl/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/pll.qip -------------------------------------------------------------------------------- /rtl/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/pll.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/pll/pll_0002.qip -------------------------------------------------------------------------------- /rtl/pll/pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/pll/pll_0002.v -------------------------------------------------------------------------------- /rtl/ym2149.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/ym2149.sv -------------------------------------------------------------------------------- /rtl/zx8x.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/rtl/zx8x.mif -------------------------------------------------------------------------------- /sys/alsa.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/alsa.sv -------------------------------------------------------------------------------- /sys/arcade_video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/arcade_video.v -------------------------------------------------------------------------------- /sys/ascal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/ascal.vhd -------------------------------------------------------------------------------- /sys/audio_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/audio_out.v -------------------------------------------------------------------------------- /sys/build_id.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/build_id.tcl -------------------------------------------------------------------------------- /sys/ddr_svc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/ddr_svc.sv -------------------------------------------------------------------------------- /sys/f2sdram_safe_terminator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/f2sdram_safe_terminator.sv -------------------------------------------------------------------------------- /sys/gamma_corr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/gamma_corr.sv -------------------------------------------------------------------------------- /sys/hps_io.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/hps_io.sv -------------------------------------------------------------------------------- /sys/hq2x.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/hq2x.sv -------------------------------------------------------------------------------- /sys/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/i2c.v -------------------------------------------------------------------------------- /sys/i2s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/i2s.v -------------------------------------------------------------------------------- /sys/iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/iir_filter.v -------------------------------------------------------------------------------- /sys/ltc2308.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/ltc2308.sv -------------------------------------------------------------------------------- /sys/math.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/math.sv -------------------------------------------------------------------------------- /sys/mcp23009.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/mcp23009.sv -------------------------------------------------------------------------------- /sys/mt32pi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/mt32pi.sv -------------------------------------------------------------------------------- /sys/osd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/osd.v -------------------------------------------------------------------------------- /sys/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_audio.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_audio.qip -------------------------------------------------------------------------------- /sys/pll_audio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_audio.v -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.qip -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.v -------------------------------------------------------------------------------- /sys/pll_cfg.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_cfg.qip -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_core.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_top.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_cfg/pll_cfg.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_cfg/pll_cfg_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi.13.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.qip -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.v -------------------------------------------------------------------------------- /sys/pll_hdmi_adj.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_hdmi_adj.vhd -------------------------------------------------------------------------------- /sys/pll_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_q13.qip -------------------------------------------------------------------------------- /sys/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/pll_q17.qip -------------------------------------------------------------------------------- /sys/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/scandoubler.v -------------------------------------------------------------------------------- /sys/scanlines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/scanlines.v -------------------------------------------------------------------------------- /sys/sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sd_card.sv -------------------------------------------------------------------------------- /sys/shadowmask.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/shadowmask.sv -------------------------------------------------------------------------------- /sys/sigma_delta_dac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sigma_delta_dac.v -------------------------------------------------------------------------------- /sys/spdif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/spdif.v -------------------------------------------------------------------------------- /sys/sys.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys.qip -------------------------------------------------------------------------------- /sys/sys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys.tcl -------------------------------------------------------------------------------- /sys/sys_analog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys_analog.tcl -------------------------------------------------------------------------------- /sys/sys_dual_sdram.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys_dual_sdram.tcl -------------------------------------------------------------------------------- /sys/sys_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys_top.sdc -------------------------------------------------------------------------------- /sys/sys_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sys_top.v -------------------------------------------------------------------------------- /sys/sysmem.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/sysmem.sv -------------------------------------------------------------------------------- /sys/vga_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/vga_out.sv -------------------------------------------------------------------------------- /sys/video_cleaner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/video_cleaner.sv -------------------------------------------------------------------------------- /sys/video_freak.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/video_freak.sv -------------------------------------------------------------------------------- /sys/video_freezer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/video_freezer.sv -------------------------------------------------------------------------------- /sys/video_mixer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/video_mixer.sv -------------------------------------------------------------------------------- /sys/yc_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/ZX81_MiSTer/HEAD/sys/yc_out.sv --------------------------------------------------------------------------------