├── .gitattributes ├── .gitignore ├── Apple-II.qpf ├── Apple-II.qsf ├── Apple-II.srf ├── Apple-II.sv ├── Palettes ├── Fantasy │ ├── Darkseed.a2p │ ├── PC_CGA_idealized.a2p │ ├── PICO-8.a2p │ └── Red_October.a2p ├── Realistic │ ├── AppleII │ │ ├── AppleII-VGA_card.a2p │ │ ├── AppleWin.a2p │ │ ├── Apple_IIe_NTSC.a2p │ │ └── Apple_IIgs_RGB.a2p │ ├── Commodore64 │ │ ├── colodore_vic2_100color_50br.a2p │ │ ├── colodore_vic2_100color_75br.a2p │ │ ├── colodore_vic2_50color_50br.a2p │ │ ├── colodore_vic2_50color_75br.a2p │ │ ├── colodore_vic2_75color_50br.a2p │ │ └── colodore_vic2_75color_75br.a2p │ └── Others │ │ ├── PC_CGA_palette_0.a2p │ │ ├── PC_CGA_palette_1.a2p │ │ └── ZX_Spectrum.a2p ├── readme.md └── utilities │ ├── act_to_a2p.py │ ├── colodore_vic2_100color_75br.act │ └── convert.bat ├── README.md ├── clean.bat ├── files.qip ├── releases ├── Apple-II_20171104.rbf ├── Apple-II_20180308.rbf ├── Apple-II_20190719.rbf ├── Apple-II_20190725.rbf ├── Apple-II_20190927.rbf ├── Apple-II_20190930.rbf ├── Apple-II_20191002.rbf ├── Apple-II_20191004.rbf ├── Apple-II_20191005.rbf ├── Apple-II_20200510.rbf ├── Apple-II_20201210.rbf ├── Apple-II_20210302.rbf ├── Apple-II_20210926.rbf ├── Apple-II_20211018.rbf ├── Apple-II_20220219.rbf ├── Apple-II_20230227.rbf ├── Apple-II_20230716.rbf ├── Apple-II_20231211.rbf ├── Apple-II_20240423.rbf └── Apple-II_20241226.rbf ├── rtl ├── R65Cx2.vhd ├── apple2.vhd ├── apple2_top.vhd ├── clock_card.v ├── disk_ii.vhd ├── disk_ii_rom.vhd ├── dpram.vhd ├── drive_ii.vhd ├── floppy_track.sv ├── hdd.vhd ├── hdd_rom.vhd ├── keyboard.vhd ├── mockingboard │ ├── YM2149.sv │ ├── mockingboard.vhd │ ├── schematic.gif │ └── via6522.vhd ├── mouse │ ├── applemouse.vhd │ ├── applemouse_mcu_rom.vhd │ ├── applemouse_rom.vhd │ ├── jt6805 │ │ ├── 6805.uc │ │ ├── 6805.vh │ │ ├── 6805.yaml │ │ ├── 6805_param.vh │ │ ├── README.md │ │ ├── jt6805.v │ │ ├── jt6805_alu.v │ │ ├── jt6805_ctrl.v │ │ ├── jt6805_regs.v │ │ └── jtframe_6805mcu.v │ └── pia6821.vhd ├── pll.qip ├── pll.v ├── pll │ ├── pll_0002.qip │ ├── pll_0002.v │ └── pll_0002_q13.qip ├── ramcard.v ├── rom.v ├── roms │ ├── Apple IIe Keyboard - 341-0150-A - 2716.bin │ ├── Apple IIe Video UK-US - Enhanced - 342-0273-A - Part1 - 2732.bin │ ├── Apple IIe Video UK-US - Enhanced - 342-0273-A - 2764.bin │ ├── apple2e.mif │ ├── clock.a65 │ ├── clock.hex │ ├── hddrvr.a65 │ ├── keyboard.mif │ ├── slot6.rom │ ├── video.mif │ └── video2.mif ├── spram.vhd ├── ssc │ ├── 6551rx.v │ ├── 6551tx.v │ ├── ssc_rom.vhd │ ├── super_serial_card.v │ └── uart_6551.v ├── t65 │ ├── T65.vhd │ ├── T65_ALU.vhd │ ├── T65_MCode.vhd │ ├── T65_Pack.vhd │ └── t65.qip ├── timing_generator.vhd ├── vga_controller.vhd └── video_generator.vhd └── 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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/.gitignore -------------------------------------------------------------------------------- /Apple-II.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Apple-II.qpf -------------------------------------------------------------------------------- /Apple-II.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Apple-II.qsf -------------------------------------------------------------------------------- /Apple-II.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Apple-II.srf -------------------------------------------------------------------------------- /Apple-II.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Apple-II.sv -------------------------------------------------------------------------------- /Palettes/Fantasy/Darkseed.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Fantasy/Darkseed.a2p -------------------------------------------------------------------------------- /Palettes/Fantasy/PC_CGA_idealized.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Fantasy/PC_CGA_idealized.a2p -------------------------------------------------------------------------------- /Palettes/Fantasy/PICO-8.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Fantasy/PICO-8.a2p -------------------------------------------------------------------------------- /Palettes/Fantasy/Red_October.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Fantasy/Red_October.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/AppleII/AppleII-VGA_card.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/AppleII/AppleII-VGA_card.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/AppleII/AppleWin.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/AppleII/AppleWin.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/AppleII/Apple_IIe_NTSC.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/AppleII/Apple_IIe_NTSC.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/AppleII/Apple_IIgs_RGB.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/AppleII/Apple_IIgs_RGB.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_100color_50br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_100color_50br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_100color_75br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_100color_75br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_50color_50br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_50color_50br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_50color_75br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_50color_75br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_75color_50br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_75color_50br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Commodore64/colodore_vic2_75color_75br.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Commodore64/colodore_vic2_75color_75br.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Others/PC_CGA_palette_0.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Others/PC_CGA_palette_0.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Others/PC_CGA_palette_1.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Others/PC_CGA_palette_1.a2p -------------------------------------------------------------------------------- /Palettes/Realistic/Others/ZX_Spectrum.a2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/Realistic/Others/ZX_Spectrum.a2p -------------------------------------------------------------------------------- /Palettes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/readme.md -------------------------------------------------------------------------------- /Palettes/utilities/act_to_a2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/utilities/act_to_a2p.py -------------------------------------------------------------------------------- /Palettes/utilities/colodore_vic2_100color_75br.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/Palettes/utilities/colodore_vic2_100color_75br.act -------------------------------------------------------------------------------- /Palettes/utilities/convert.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python act_to_a2p.py -f %1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/README.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/clean.bat -------------------------------------------------------------------------------- /files.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/files.qip -------------------------------------------------------------------------------- /releases/Apple-II_20171104.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20171104.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20180308.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20180308.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20190719.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20190719.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20190725.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20190725.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20190927.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20190927.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20190930.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20190930.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20191002.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20191002.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20191004.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20191004.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20191005.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20191005.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20200510.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20200510.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20201210.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20201210.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20210302.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20210302.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20210926.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20210926.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20211018.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20211018.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20220219.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20220219.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20230227.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20230227.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20230716.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20230716.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20231211.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20231211.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20240423.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20240423.rbf -------------------------------------------------------------------------------- /releases/Apple-II_20241226.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/releases/Apple-II_20241226.rbf -------------------------------------------------------------------------------- /rtl/R65Cx2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/R65Cx2.vhd -------------------------------------------------------------------------------- /rtl/apple2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/apple2.vhd -------------------------------------------------------------------------------- /rtl/apple2_top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/apple2_top.vhd -------------------------------------------------------------------------------- /rtl/clock_card.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/clock_card.v -------------------------------------------------------------------------------- /rtl/disk_ii.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/disk_ii.vhd -------------------------------------------------------------------------------- /rtl/disk_ii_rom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/disk_ii_rom.vhd -------------------------------------------------------------------------------- /rtl/dpram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/dpram.vhd -------------------------------------------------------------------------------- /rtl/drive_ii.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/drive_ii.vhd -------------------------------------------------------------------------------- /rtl/floppy_track.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/floppy_track.sv -------------------------------------------------------------------------------- /rtl/hdd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/hdd.vhd -------------------------------------------------------------------------------- /rtl/hdd_rom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/hdd_rom.vhd -------------------------------------------------------------------------------- /rtl/keyboard.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/keyboard.vhd -------------------------------------------------------------------------------- /rtl/mockingboard/YM2149.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mockingboard/YM2149.sv -------------------------------------------------------------------------------- /rtl/mockingboard/mockingboard.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mockingboard/mockingboard.vhd -------------------------------------------------------------------------------- /rtl/mockingboard/schematic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mockingboard/schematic.gif -------------------------------------------------------------------------------- /rtl/mockingboard/via6522.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mockingboard/via6522.vhd -------------------------------------------------------------------------------- /rtl/mouse/applemouse.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/applemouse.vhd -------------------------------------------------------------------------------- /rtl/mouse/applemouse_mcu_rom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/applemouse_mcu_rom.vhd -------------------------------------------------------------------------------- /rtl/mouse/applemouse_rom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/applemouse_rom.vhd -------------------------------------------------------------------------------- /rtl/mouse/jt6805/6805.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/6805.uc -------------------------------------------------------------------------------- /rtl/mouse/jt6805/6805.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/6805.vh -------------------------------------------------------------------------------- /rtl/mouse/jt6805/6805.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/6805.yaml -------------------------------------------------------------------------------- /rtl/mouse/jt6805/6805_param.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/6805_param.vh -------------------------------------------------------------------------------- /rtl/mouse/jt6805/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/README.md -------------------------------------------------------------------------------- /rtl/mouse/jt6805/jt6805.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/jt6805.v -------------------------------------------------------------------------------- /rtl/mouse/jt6805/jt6805_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/jt6805_alu.v -------------------------------------------------------------------------------- /rtl/mouse/jt6805/jt6805_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/jt6805_ctrl.v -------------------------------------------------------------------------------- /rtl/mouse/jt6805/jt6805_regs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/jt6805_regs.v -------------------------------------------------------------------------------- /rtl/mouse/jt6805/jtframe_6805mcu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/jt6805/jtframe_6805mcu.v -------------------------------------------------------------------------------- /rtl/mouse/pia6821.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/mouse/pia6821.vhd -------------------------------------------------------------------------------- /rtl/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/pll.qip -------------------------------------------------------------------------------- /rtl/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/pll.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/pll/pll_0002.qip -------------------------------------------------------------------------------- /rtl/pll/pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/pll/pll_0002.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/pll/pll_0002_q13.qip -------------------------------------------------------------------------------- /rtl/ramcard.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ramcard.v -------------------------------------------------------------------------------- /rtl/rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/rom.v -------------------------------------------------------------------------------- /rtl/roms/Apple IIe Keyboard - 341-0150-A - 2716.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/Apple IIe Keyboard - 341-0150-A - 2716.bin -------------------------------------------------------------------------------- /rtl/roms/Apple IIe Video UK-US - Enhanced - 342-0273-A - Part1 - 2732.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/Apple IIe Video UK-US - Enhanced - 342-0273-A - Part1 - 2732.bin -------------------------------------------------------------------------------- /rtl/roms/Apple IIe Video UK-US - Enhanced - 342-0273-A - 2764.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/Apple IIe Video UK-US - Enhanced - 342-0273-A - 2764.bin -------------------------------------------------------------------------------- /rtl/roms/apple2e.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/apple2e.mif -------------------------------------------------------------------------------- /rtl/roms/clock.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/clock.a65 -------------------------------------------------------------------------------- /rtl/roms/clock.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/clock.hex -------------------------------------------------------------------------------- /rtl/roms/hddrvr.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/hddrvr.a65 -------------------------------------------------------------------------------- /rtl/roms/keyboard.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/keyboard.mif -------------------------------------------------------------------------------- /rtl/roms/slot6.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/slot6.rom -------------------------------------------------------------------------------- /rtl/roms/video.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/video.mif -------------------------------------------------------------------------------- /rtl/roms/video2.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/roms/video2.mif -------------------------------------------------------------------------------- /rtl/spram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/spram.vhd -------------------------------------------------------------------------------- /rtl/ssc/6551rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ssc/6551rx.v -------------------------------------------------------------------------------- /rtl/ssc/6551tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ssc/6551tx.v -------------------------------------------------------------------------------- /rtl/ssc/ssc_rom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ssc/ssc_rom.vhd -------------------------------------------------------------------------------- /rtl/ssc/super_serial_card.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ssc/super_serial_card.v -------------------------------------------------------------------------------- /rtl/ssc/uart_6551.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/ssc/uart_6551.v -------------------------------------------------------------------------------- /rtl/t65/T65.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/t65/T65.vhd -------------------------------------------------------------------------------- /rtl/t65/T65_ALU.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/t65/T65_ALU.vhd -------------------------------------------------------------------------------- /rtl/t65/T65_MCode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/t65/T65_MCode.vhd -------------------------------------------------------------------------------- /rtl/t65/T65_Pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/t65/T65_Pack.vhd -------------------------------------------------------------------------------- /rtl/t65/t65.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/t65/t65.qip -------------------------------------------------------------------------------- /rtl/timing_generator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/timing_generator.vhd -------------------------------------------------------------------------------- /rtl/vga_controller.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/vga_controller.vhd -------------------------------------------------------------------------------- /rtl/video_generator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/rtl/video_generator.vhd -------------------------------------------------------------------------------- /sys/alsa.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/alsa.sv -------------------------------------------------------------------------------- /sys/arcade_video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/arcade_video.v -------------------------------------------------------------------------------- /sys/ascal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/ascal.vhd -------------------------------------------------------------------------------- /sys/audio_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/audio_out.v -------------------------------------------------------------------------------- /sys/build_id.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/build_id.tcl -------------------------------------------------------------------------------- /sys/ddr_svc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/ddr_svc.sv -------------------------------------------------------------------------------- /sys/f2sdram_safe_terminator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/f2sdram_safe_terminator.sv -------------------------------------------------------------------------------- /sys/gamma_corr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/gamma_corr.sv -------------------------------------------------------------------------------- /sys/hps_io.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/hps_io.sv -------------------------------------------------------------------------------- /sys/hq2x.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/hq2x.sv -------------------------------------------------------------------------------- /sys/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/i2c.v -------------------------------------------------------------------------------- /sys/i2s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/i2s.v -------------------------------------------------------------------------------- /sys/iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/iir_filter.v -------------------------------------------------------------------------------- /sys/ltc2308.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/ltc2308.sv -------------------------------------------------------------------------------- /sys/math.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/math.sv -------------------------------------------------------------------------------- /sys/mcp23009.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/mcp23009.sv -------------------------------------------------------------------------------- /sys/mt32pi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/mt32pi.sv -------------------------------------------------------------------------------- /sys/osd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/osd.v -------------------------------------------------------------------------------- /sys/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_audio.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_audio.qip -------------------------------------------------------------------------------- /sys/pll_audio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_audio.v -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.qip -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.v -------------------------------------------------------------------------------- /sys/pll_cfg.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_cfg.qip -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_core.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_top.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_cfg/pll_cfg.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_cfg/pll_cfg_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi.13.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.qip -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.v -------------------------------------------------------------------------------- /sys/pll_hdmi_adj.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_hdmi_adj.vhd -------------------------------------------------------------------------------- /sys/pll_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_q13.qip -------------------------------------------------------------------------------- /sys/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/pll_q17.qip -------------------------------------------------------------------------------- /sys/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/scandoubler.v -------------------------------------------------------------------------------- /sys/scanlines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/scanlines.v -------------------------------------------------------------------------------- /sys/sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sd_card.sv -------------------------------------------------------------------------------- /sys/shadowmask.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/shadowmask.sv -------------------------------------------------------------------------------- /sys/sigma_delta_dac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sigma_delta_dac.v -------------------------------------------------------------------------------- /sys/spdif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/spdif.v -------------------------------------------------------------------------------- /sys/sys.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys.qip -------------------------------------------------------------------------------- /sys/sys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys.tcl -------------------------------------------------------------------------------- /sys/sys_analog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys_analog.tcl -------------------------------------------------------------------------------- /sys/sys_dual_sdram.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys_dual_sdram.tcl -------------------------------------------------------------------------------- /sys/sys_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys_top.sdc -------------------------------------------------------------------------------- /sys/sys_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sys_top.v -------------------------------------------------------------------------------- /sys/sysmem.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/sysmem.sv -------------------------------------------------------------------------------- /sys/vga_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/vga_out.sv -------------------------------------------------------------------------------- /sys/video_cleaner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/video_cleaner.sv -------------------------------------------------------------------------------- /sys/video_freak.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/video_freak.sv -------------------------------------------------------------------------------- /sys/video_freezer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/video_freezer.sv -------------------------------------------------------------------------------- /sys/video_mixer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/video_mixer.sv -------------------------------------------------------------------------------- /sys/yc_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Apple-II_MiSTer/HEAD/sys/yc_out.sv --------------------------------------------------------------------------------