├── .gitignore ├── Atari5200.qpf ├── Atari5200.qsf ├── Atari5200.srf ├── Atari5200.sv ├── Atari800.qpf ├── Atari800.qsf ├── Atari800.srf ├── Atari800.sv ├── COPYRIGHT_NOTICE ├── README.md ├── clean.bat ├── files5200.qip ├── files800.qip ├── firmware ├── .gitignore ├── Makefile ├── PBIBIOS.mif ├── atari_drive_emulator.c ├── atari_drive_emulator.h ├── atx.c ├── atx.h ├── atx_eclaire.c ├── atx_eclaire.h ├── crt0.S ├── file.c ├── file.h ├── freeze.h ├── freeze5200.c ├── freeze800.c ├── hsio-pbi.xex ├── integer.h ├── joystick.h ├── joystick5200.c ├── joystick800.c ├── libgcc_divmod.c ├── main.h ├── main5200.c ├── main800.c ├── memory.h ├── mycrt0.s ├── pause.h ├── pbi_bios.asm ├── printf.c ├── printf.h ├── process_xex_loader.py ├── regs.h ├── standalone_simple.ld ├── standalone_simple_large.ld ├── uart.c ├── uart.h ├── xex_loader.asm ├── xex_loader.h ├── zpu_rom_5200.mif └── zpu_rom_800.mif ├── instructions.txt ├── releases ├── Atari5200_20171009.rbf ├── Atari5200_20180307.rbf ├── Atari5200_20180519.rbf ├── Atari5200_20190209.rbf ├── Atari5200_20190212.rbf ├── Atari5200_20190213.rbf ├── Atari5200_20190307.rbf ├── Atari5200_20190711.rbf ├── Atari5200_20190927.rbf ├── Atari5200_20200509.rbf ├── Atari5200_20201106.rbf ├── Atari5200_20210228.rbf ├── Atari5200_20220220.rbf ├── Atari5200_20220927.rbf ├── Atari5200_20230227.rbf ├── Atari5200_20231208.rbf ├── Atari5200_20240423.rbf ├── Atari5200_20250710.rbf ├── Atari800_20171008.rbf ├── Atari800_20171009.rbf ├── Atari800_20180307.rbf ├── Atari800_20180519.rbf ├── Atari800_20180812.rbf ├── Atari800_20190209.rbf ├── Atari800_20190211.rbf ├── Atari800_20190212.rbf ├── Atari800_20190307.rbf ├── Atari800_20190711.rbf ├── Atari800_20190927.rbf ├── Atari800_20200509.rbf ├── Atari800_20201106.rbf ├── Atari800_20201128.rbf ├── Atari800_20210228.rbf ├── Atari800_20220220.rbf ├── Atari800_20220927.rbf ├── Atari800_20230227.rbf ├── Atari800_20231018.rbf ├── Atari800_20231208.rbf ├── Atari800_20240423.rbf └── Atari800_20250710.rbf ├── rtl ├── articolor.sv ├── atari5200top.vhd ├── atari800top.vhd ├── bram.vhd ├── common │ ├── a8core │ │ ├── address_decoder.vhdl │ │ ├── antic.vhdl │ │ ├── antic_counter.vhdl │ │ ├── antic_dma_clock.vhdl │ │ ├── atari5200core.vhd │ │ ├── atari5200core_simplesdram.vhd │ │ ├── atari800core.vhd │ │ ├── atari800core_simple_sdram.vhd │ │ ├── cart_logic.vhd │ │ ├── covox.vhd │ │ ├── cpu.vhd │ │ ├── cpu_65xx.vhd │ │ ├── enable_divider.vhdl │ │ ├── freezer_logic.vhd │ │ ├── gtia.vhdl │ │ ├── gtia_palette.vhdl │ │ ├── gtia_player.vhdl │ │ ├── gtia_priority.vhdl │ │ ├── internalromram.vhd │ │ ├── irq_glue.vhdl │ │ ├── pbi_rom.vhdl │ │ ├── pia.vhdl │ │ ├── pokey.vhdl │ │ ├── pokey_countdown_timer.vhdl │ │ ├── pokey_keyboard_scanner.vhdl │ │ ├── pokey_mixer.vhdl │ │ ├── pokey_mixer_mux.vhdl │ │ ├── pokey_noise_filter.vhdl │ │ ├── pokey_poly_17_9.vhdl │ │ ├── pokey_poly_4.vhdl │ │ ├── pokey_poly_5.vhdl │ │ ├── pot_from_signed.vhdl │ │ ├── ps2_to_atari5200.vhdl │ │ ├── ps2_to_atari800.vhdl │ │ ├── reg_file.vhdl │ │ ├── shared_enable.vhdl │ │ ├── simple_counter.vhdl │ │ ├── ultime.vhdl │ │ └── wide_delay_line.vhdl │ ├── components │ │ ├── complete_address_decoder.vhdl │ │ ├── delay_line.vhdl │ │ ├── generic_ram_infer.vhdl │ │ ├── latch_delay_line.vhdl │ │ ├── mult_infer.vhdl │ │ ├── ps2_keyboard.vhdl │ │ ├── sdram_statemachine.vhdl │ │ ├── simple_low_pass_filter.vhdl │ │ ├── synchronizer.vhdl │ │ └── syncreset_enable_divider.vhd │ └── zpu │ │ ├── fifo_receive.vhd │ │ ├── fifo_transmit.vhd │ │ ├── sio_handler.vhdl │ │ ├── zpu_config_regs.vhdl │ │ ├── zpu_core.vhd │ │ ├── zpu_glue.vhdl │ │ ├── zpucore.vhd │ │ └── zpupkg.vhd ├── pll.qip ├── pll.v ├── pll │ ├── pll_0002.qip │ ├── pll_0002.v │ └── pll_0002_q13.qip └── rom │ ├── 5200.mif │ ├── ATARIBAS.mif │ ├── ATARIOSA.mif │ ├── ATARIOSAn.mif │ ├── ATARIOSB.mif │ ├── ATARIOSBn.mif │ ├── ATARIXL.mif │ └── ATARIXLn.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/Atari800_MiSTer/HEAD/.gitignore -------------------------------------------------------------------------------- /Atari5200.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari5200.qpf -------------------------------------------------------------------------------- /Atari5200.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari5200.qsf -------------------------------------------------------------------------------- /Atari5200.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari5200.srf -------------------------------------------------------------------------------- /Atari5200.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari5200.sv -------------------------------------------------------------------------------- /Atari800.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari800.qpf -------------------------------------------------------------------------------- /Atari800.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari800.qsf -------------------------------------------------------------------------------- /Atari800.srf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari800.srf -------------------------------------------------------------------------------- /Atari800.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/Atari800.sv -------------------------------------------------------------------------------- /COPYRIGHT_NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/COPYRIGHT_NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/README.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/clean.bat -------------------------------------------------------------------------------- /files5200.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/files5200.qip -------------------------------------------------------------------------------- /files800.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/files800.qip -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/PBIBIOS.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/PBIBIOS.mif -------------------------------------------------------------------------------- /firmware/atari_drive_emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atari_drive_emulator.c -------------------------------------------------------------------------------- /firmware/atari_drive_emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atari_drive_emulator.h -------------------------------------------------------------------------------- /firmware/atx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atx.c -------------------------------------------------------------------------------- /firmware/atx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atx.h -------------------------------------------------------------------------------- /firmware/atx_eclaire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atx_eclaire.c -------------------------------------------------------------------------------- /firmware/atx_eclaire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/atx_eclaire.h -------------------------------------------------------------------------------- /firmware/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/crt0.S -------------------------------------------------------------------------------- /firmware/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/file.c -------------------------------------------------------------------------------- /firmware/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/file.h -------------------------------------------------------------------------------- /firmware/freeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/freeze.h -------------------------------------------------------------------------------- /firmware/freeze5200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/freeze5200.c -------------------------------------------------------------------------------- /firmware/freeze800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/freeze800.c -------------------------------------------------------------------------------- /firmware/hsio-pbi.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/hsio-pbi.xex -------------------------------------------------------------------------------- /firmware/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/integer.h -------------------------------------------------------------------------------- /firmware/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/joystick.h -------------------------------------------------------------------------------- /firmware/joystick5200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/joystick5200.c -------------------------------------------------------------------------------- /firmware/joystick800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/joystick800.c -------------------------------------------------------------------------------- /firmware/libgcc_divmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/libgcc_divmod.c -------------------------------------------------------------------------------- /firmware/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/main.h -------------------------------------------------------------------------------- /firmware/main5200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/main5200.c -------------------------------------------------------------------------------- /firmware/main800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/main800.c -------------------------------------------------------------------------------- /firmware/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/memory.h -------------------------------------------------------------------------------- /firmware/mycrt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/mycrt0.s -------------------------------------------------------------------------------- /firmware/pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/pause.h -------------------------------------------------------------------------------- /firmware/pbi_bios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/pbi_bios.asm -------------------------------------------------------------------------------- /firmware/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/printf.c -------------------------------------------------------------------------------- /firmware/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/printf.h -------------------------------------------------------------------------------- /firmware/process_xex_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/process_xex_loader.py -------------------------------------------------------------------------------- /firmware/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/regs.h -------------------------------------------------------------------------------- /firmware/standalone_simple.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/standalone_simple.ld -------------------------------------------------------------------------------- /firmware/standalone_simple_large.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/standalone_simple_large.ld -------------------------------------------------------------------------------- /firmware/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/uart.c -------------------------------------------------------------------------------- /firmware/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/uart.h -------------------------------------------------------------------------------- /firmware/xex_loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/xex_loader.asm -------------------------------------------------------------------------------- /firmware/xex_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/xex_loader.h -------------------------------------------------------------------------------- /firmware/zpu_rom_5200.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/zpu_rom_5200.mif -------------------------------------------------------------------------------- /firmware/zpu_rom_800.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/firmware/zpu_rom_800.mif -------------------------------------------------------------------------------- /instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/instructions.txt -------------------------------------------------------------------------------- /releases/Atari5200_20171009.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20171009.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20180307.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20180307.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20180519.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20180519.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190209.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190209.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190212.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190212.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190213.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190213.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190307.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190307.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190711.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190711.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20190927.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20190927.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20200509.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20200509.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20201106.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20201106.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20210228.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20210228.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20220220.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20220220.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20220927.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20220927.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20230227.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20230227.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20231208.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20231208.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20240423.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20240423.rbf -------------------------------------------------------------------------------- /releases/Atari5200_20250710.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari5200_20250710.rbf -------------------------------------------------------------------------------- /releases/Atari800_20171008.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20171008.rbf -------------------------------------------------------------------------------- /releases/Atari800_20171009.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20171009.rbf -------------------------------------------------------------------------------- /releases/Atari800_20180307.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20180307.rbf -------------------------------------------------------------------------------- /releases/Atari800_20180519.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20180519.rbf -------------------------------------------------------------------------------- /releases/Atari800_20180812.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20180812.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190209.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190209.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190211.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190211.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190212.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190212.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190307.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190307.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190711.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190711.rbf -------------------------------------------------------------------------------- /releases/Atari800_20190927.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20190927.rbf -------------------------------------------------------------------------------- /releases/Atari800_20200509.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20200509.rbf -------------------------------------------------------------------------------- /releases/Atari800_20201106.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20201106.rbf -------------------------------------------------------------------------------- /releases/Atari800_20201128.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20201128.rbf -------------------------------------------------------------------------------- /releases/Atari800_20210228.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20210228.rbf -------------------------------------------------------------------------------- /releases/Atari800_20220220.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20220220.rbf -------------------------------------------------------------------------------- /releases/Atari800_20220927.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20220927.rbf -------------------------------------------------------------------------------- /releases/Atari800_20230227.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20230227.rbf -------------------------------------------------------------------------------- /releases/Atari800_20231018.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20231018.rbf -------------------------------------------------------------------------------- /releases/Atari800_20231208.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20231208.rbf -------------------------------------------------------------------------------- /releases/Atari800_20240423.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20240423.rbf -------------------------------------------------------------------------------- /releases/Atari800_20250710.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/releases/Atari800_20250710.rbf -------------------------------------------------------------------------------- /rtl/articolor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/articolor.sv -------------------------------------------------------------------------------- /rtl/atari5200top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/atari5200top.vhd -------------------------------------------------------------------------------- /rtl/atari800top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/atari800top.vhd -------------------------------------------------------------------------------- /rtl/bram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/bram.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/address_decoder.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/address_decoder.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/antic.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/antic.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/antic_counter.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/antic_counter.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/antic_dma_clock.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/antic_dma_clock.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/atari5200core.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/atari5200core.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/atari5200core_simplesdram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/atari5200core_simplesdram.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/atari800core.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/atari800core.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/atari800core_simple_sdram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/atari800core_simple_sdram.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/cart_logic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/cart_logic.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/covox.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/covox.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/cpu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/cpu.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/cpu_65xx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/cpu_65xx.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/enable_divider.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/enable_divider.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/freezer_logic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/freezer_logic.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/gtia.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/gtia.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/gtia_palette.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/gtia_palette.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/gtia_player.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/gtia_player.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/gtia_priority.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/gtia_priority.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/internalromram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/internalromram.vhd -------------------------------------------------------------------------------- /rtl/common/a8core/irq_glue.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/irq_glue.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pbi_rom.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pbi_rom.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pia.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pia.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_countdown_timer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_countdown_timer.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_keyboard_scanner.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_keyboard_scanner.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_mixer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_mixer.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_mixer_mux.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_mixer_mux.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_noise_filter.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_noise_filter.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_poly_17_9.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_poly_17_9.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_poly_4.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_poly_4.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pokey_poly_5.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pokey_poly_5.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/pot_from_signed.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/pot_from_signed.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/ps2_to_atari5200.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/ps2_to_atari5200.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/ps2_to_atari800.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/ps2_to_atari800.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/reg_file.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/reg_file.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/shared_enable.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/shared_enable.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/simple_counter.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/simple_counter.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/ultime.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/ultime.vhdl -------------------------------------------------------------------------------- /rtl/common/a8core/wide_delay_line.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/a8core/wide_delay_line.vhdl -------------------------------------------------------------------------------- /rtl/common/components/complete_address_decoder.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/complete_address_decoder.vhdl -------------------------------------------------------------------------------- /rtl/common/components/delay_line.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/delay_line.vhdl -------------------------------------------------------------------------------- /rtl/common/components/generic_ram_infer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/generic_ram_infer.vhdl -------------------------------------------------------------------------------- /rtl/common/components/latch_delay_line.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/latch_delay_line.vhdl -------------------------------------------------------------------------------- /rtl/common/components/mult_infer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/mult_infer.vhdl -------------------------------------------------------------------------------- /rtl/common/components/ps2_keyboard.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/ps2_keyboard.vhdl -------------------------------------------------------------------------------- /rtl/common/components/sdram_statemachine.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/sdram_statemachine.vhdl -------------------------------------------------------------------------------- /rtl/common/components/simple_low_pass_filter.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/simple_low_pass_filter.vhdl -------------------------------------------------------------------------------- /rtl/common/components/synchronizer.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/synchronizer.vhdl -------------------------------------------------------------------------------- /rtl/common/components/syncreset_enable_divider.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/components/syncreset_enable_divider.vhd -------------------------------------------------------------------------------- /rtl/common/zpu/fifo_receive.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/fifo_receive.vhd -------------------------------------------------------------------------------- /rtl/common/zpu/fifo_transmit.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/fifo_transmit.vhd -------------------------------------------------------------------------------- /rtl/common/zpu/sio_handler.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/sio_handler.vhdl -------------------------------------------------------------------------------- /rtl/common/zpu/zpu_config_regs.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/zpu_config_regs.vhdl -------------------------------------------------------------------------------- /rtl/common/zpu/zpu_core.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/zpu_core.vhd -------------------------------------------------------------------------------- /rtl/common/zpu/zpu_glue.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/zpu_glue.vhdl -------------------------------------------------------------------------------- /rtl/common/zpu/zpucore.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/zpucore.vhd -------------------------------------------------------------------------------- /rtl/common/zpu/zpupkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/common/zpu/zpupkg.vhd -------------------------------------------------------------------------------- /rtl/pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/pll.qip -------------------------------------------------------------------------------- /rtl/pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/pll.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/pll/pll_0002.qip -------------------------------------------------------------------------------- /rtl/pll/pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/pll/pll_0002.v -------------------------------------------------------------------------------- /rtl/pll/pll_0002_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/pll/pll_0002_q13.qip -------------------------------------------------------------------------------- /rtl/rom/5200.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/5200.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIBAS.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIBAS.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIOSA.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIOSA.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIOSAn.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIOSAn.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIOSB.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIOSB.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIOSBn.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIOSBn.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIXL.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIXL.mif -------------------------------------------------------------------------------- /rtl/rom/ATARIXLn.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/rtl/rom/ATARIXLn.mif -------------------------------------------------------------------------------- /sys/alsa.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/alsa.sv -------------------------------------------------------------------------------- /sys/arcade_video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/arcade_video.v -------------------------------------------------------------------------------- /sys/ascal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/ascal.vhd -------------------------------------------------------------------------------- /sys/audio_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/audio_out.v -------------------------------------------------------------------------------- /sys/build_id.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/build_id.tcl -------------------------------------------------------------------------------- /sys/ddr_svc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/ddr_svc.sv -------------------------------------------------------------------------------- /sys/f2sdram_safe_terminator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/f2sdram_safe_terminator.sv -------------------------------------------------------------------------------- /sys/gamma_corr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/gamma_corr.sv -------------------------------------------------------------------------------- /sys/hps_io.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/hps_io.sv -------------------------------------------------------------------------------- /sys/hq2x.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/hq2x.sv -------------------------------------------------------------------------------- /sys/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/i2c.v -------------------------------------------------------------------------------- /sys/i2s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/i2s.v -------------------------------------------------------------------------------- /sys/iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/iir_filter.v -------------------------------------------------------------------------------- /sys/ltc2308.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/ltc2308.sv -------------------------------------------------------------------------------- /sys/math.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/math.sv -------------------------------------------------------------------------------- /sys/mcp23009.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/mcp23009.sv -------------------------------------------------------------------------------- /sys/mt32pi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/mt32pi.sv -------------------------------------------------------------------------------- /sys/osd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/osd.v -------------------------------------------------------------------------------- /sys/pll.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_audio.13.qip -------------------------------------------------------------------------------- /sys/pll_audio.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_audio.qip -------------------------------------------------------------------------------- /sys/pll_audio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_audio.v -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.qip -------------------------------------------------------------------------------- /sys/pll_audio/pll_audio_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_audio/pll_audio_0002.v -------------------------------------------------------------------------------- /sys/pll_cfg.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_cfg.qip -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_core.v -------------------------------------------------------------------------------- /sys/pll_cfg/altera_pll_reconfig_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_cfg/altera_pll_reconfig_top.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_cfg/pll_cfg.v -------------------------------------------------------------------------------- /sys/pll_cfg/pll_cfg_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_cfg/pll_cfg_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi.13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi.13.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi.qip -------------------------------------------------------------------------------- /sys/pll_hdmi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi.v -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.qip -------------------------------------------------------------------------------- /sys/pll_hdmi/pll_hdmi_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi/pll_hdmi_0002.v -------------------------------------------------------------------------------- /sys/pll_hdmi_adj.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_hdmi_adj.vhd -------------------------------------------------------------------------------- /sys/pll_q13.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_q13.qip -------------------------------------------------------------------------------- /sys/pll_q17.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/pll_q17.qip -------------------------------------------------------------------------------- /sys/scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/scandoubler.v -------------------------------------------------------------------------------- /sys/scanlines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/scanlines.v -------------------------------------------------------------------------------- /sys/sd_card.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sd_card.sv -------------------------------------------------------------------------------- /sys/shadowmask.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/shadowmask.sv -------------------------------------------------------------------------------- /sys/sigma_delta_dac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sigma_delta_dac.v -------------------------------------------------------------------------------- /sys/spdif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/spdif.v -------------------------------------------------------------------------------- /sys/sys.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys.qip -------------------------------------------------------------------------------- /sys/sys.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys.tcl -------------------------------------------------------------------------------- /sys/sys_analog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys_analog.tcl -------------------------------------------------------------------------------- /sys/sys_dual_sdram.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys_dual_sdram.tcl -------------------------------------------------------------------------------- /sys/sys_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys_top.sdc -------------------------------------------------------------------------------- /sys/sys_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sys_top.v -------------------------------------------------------------------------------- /sys/sysmem.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/sysmem.sv -------------------------------------------------------------------------------- /sys/vga_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/vga_out.sv -------------------------------------------------------------------------------- /sys/video_cleaner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/video_cleaner.sv -------------------------------------------------------------------------------- /sys/video_freak.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/video_freak.sv -------------------------------------------------------------------------------- /sys/video_freezer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/video_freezer.sv -------------------------------------------------------------------------------- /sys/video_mixer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/video_mixer.sv -------------------------------------------------------------------------------- /sys/yc_out.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTer-devel/Atari800_MiSTer/HEAD/sys/yc_out.sv --------------------------------------------------------------------------------