├── .gitignore ├── LICENSE ├── README.md ├── README_20k.md ├── efinix ├── .gitignore ├── T80 │ ├── T80.vhd │ ├── T80_ALU.vhd │ ├── T80_MCode.vhd │ ├── T80_Pack.vhd │ ├── T80_Reg.vhd │ ├── T80_RegX.vhd │ └── T80sed.vhd ├── hdmi │ ├── audio_clock_regeneration_packet.sv │ ├── audio_info_frame.sv │ ├── audio_sample_packet.sv │ ├── auxiliary_video_information_info_frame.sv │ ├── hdmi.sv │ ├── packet_assembler.sv │ ├── packet_picker.sv │ ├── serializer.sv │ ├── source_product_description_info_frame.sv │ └── tmds_channel.sv ├── pacman.peri.xml ├── pacman.xml ├── roms │ ├── README.md │ ├── pacman_5e.v │ ├── pacman_5f.v │ ├── pacman_6e.v │ ├── pacman_6f.v │ ├── pacman_6h.v │ ├── pacman_6j.v │ ├── prom_82s123_7f.v │ ├── prom_82s126_1m.v │ ├── prom_82s126_3m.v │ └── prom_82s126_4a.v ├── top.sv └── video.v ├── images ├── buttons.jpg ├── buttons.svg ├── m0s_joystick.jpeg ├── pacman_hdmi_20k.jpeg └── pacman_hdmi_wide.jpeg ├── m0sdock_usb_joystick ├── .gitignore ├── CMakeLists.txt ├── FreeRTOSConfig.h ├── Makefile ├── README.md ├── flash_prog_cfg.ini ├── main.c ├── proj.conf ├── usb_config.h └── usb_host.c ├── tangnano20k ├── impl │ ├── .gitignore │ └── project_process_config.json ├── pacman.gprj └── src │ ├── dualshock_controller.v │ ├── gowin_rpll_20k │ ├── pll_174m_20k.ipc │ ├── pll_174m_20k.v │ ├── pll_240m_20k.ipc │ └── pll_240m_20k.v │ ├── pacman.cst │ └── top.sv └── tangnano9k ├── impl ├── .gitignore └── project_process_config.json ├── pacman.gprj └── src ├── T80 ├── T80.vhd ├── T80_ALU.vhd ├── T80_MCode.vhd ├── T80_Pack.vhd ├── T80_Reg.vhd ├── T80_RegX.vhd └── T80sed.vhd ├── gowin_clkdiv ├── gowin_clkdiv.ipc ├── gowin_clkdiv.mod └── gowin_clkdiv.v ├── gowin_dpb ├── ram.ipc ├── ram.mod ├── ram.v └── ram_tmp.v ├── gowin_rpll ├── pll_174m.ipc ├── pll_174m.mod ├── pll_174m.v ├── pll_174m_tmp.v ├── pll_240m.ipc ├── pll_240m.mod ├── pll_240m.v └── pll_240m_tmp.v ├── hdmi ├── audio_clock_regeneration_packet.sv ├── audio_info_frame.sv ├── audio_sample_packet.sv ├── auxiliary_video_information_info_frame.sv ├── hdmi.sv ├── packet_assembler.sv ├── packet_picker.sv ├── serializer.sv ├── source_product_description_info_frame.sv └── tmds_channel.sv ├── pacman.cst ├── pacman.sdc ├── roms ├── .gitignore ├── bin2v.py └── conv.sh ├── top.sv └── video.v /.gitignore: -------------------------------------------------------------------------------- 1 | pacman.gprj.user 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/README.md -------------------------------------------------------------------------------- /README_20k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/README_20k.md -------------------------------------------------------------------------------- /efinix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/.gitignore -------------------------------------------------------------------------------- /efinix/T80/T80.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80.vhd -------------------------------------------------------------------------------- /efinix/T80/T80_ALU.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80_ALU.vhd -------------------------------------------------------------------------------- /efinix/T80/T80_MCode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80_MCode.vhd -------------------------------------------------------------------------------- /efinix/T80/T80_Pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80_Pack.vhd -------------------------------------------------------------------------------- /efinix/T80/T80_Reg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80_Reg.vhd -------------------------------------------------------------------------------- /efinix/T80/T80_RegX.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80_RegX.vhd -------------------------------------------------------------------------------- /efinix/T80/T80sed.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/T80/T80sed.vhd -------------------------------------------------------------------------------- /efinix/hdmi/audio_clock_regeneration_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/audio_clock_regeneration_packet.sv -------------------------------------------------------------------------------- /efinix/hdmi/audio_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/audio_info_frame.sv -------------------------------------------------------------------------------- /efinix/hdmi/audio_sample_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/audio_sample_packet.sv -------------------------------------------------------------------------------- /efinix/hdmi/auxiliary_video_information_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/auxiliary_video_information_info_frame.sv -------------------------------------------------------------------------------- /efinix/hdmi/hdmi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/hdmi.sv -------------------------------------------------------------------------------- /efinix/hdmi/packet_assembler.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/packet_assembler.sv -------------------------------------------------------------------------------- /efinix/hdmi/packet_picker.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/packet_picker.sv -------------------------------------------------------------------------------- /efinix/hdmi/serializer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/serializer.sv -------------------------------------------------------------------------------- /efinix/hdmi/source_product_description_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/source_product_description_info_frame.sv -------------------------------------------------------------------------------- /efinix/hdmi/tmds_channel.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/hdmi/tmds_channel.sv -------------------------------------------------------------------------------- /efinix/pacman.peri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/pacman.peri.xml -------------------------------------------------------------------------------- /efinix/pacman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/pacman.xml -------------------------------------------------------------------------------- /efinix/roms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/README.md -------------------------------------------------------------------------------- /efinix/roms/pacman_5e.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_5e.v -------------------------------------------------------------------------------- /efinix/roms/pacman_5f.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_5f.v -------------------------------------------------------------------------------- /efinix/roms/pacman_6e.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_6e.v -------------------------------------------------------------------------------- /efinix/roms/pacman_6f.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_6f.v -------------------------------------------------------------------------------- /efinix/roms/pacman_6h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_6h.v -------------------------------------------------------------------------------- /efinix/roms/pacman_6j.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/pacman_6j.v -------------------------------------------------------------------------------- /efinix/roms/prom_82s123_7f.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/prom_82s123_7f.v -------------------------------------------------------------------------------- /efinix/roms/prom_82s126_1m.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/prom_82s126_1m.v -------------------------------------------------------------------------------- /efinix/roms/prom_82s126_3m.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/prom_82s126_3m.v -------------------------------------------------------------------------------- /efinix/roms/prom_82s126_4a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/roms/prom_82s126_4a.v -------------------------------------------------------------------------------- /efinix/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/top.sv -------------------------------------------------------------------------------- /efinix/video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/efinix/video.v -------------------------------------------------------------------------------- /images/buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/images/buttons.jpg -------------------------------------------------------------------------------- /images/buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/images/buttons.svg -------------------------------------------------------------------------------- /images/m0s_joystick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/images/m0s_joystick.jpeg -------------------------------------------------------------------------------- /images/pacman_hdmi_20k.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/images/pacman_hdmi_20k.jpeg -------------------------------------------------------------------------------- /images/pacman_hdmi_wide.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/images/pacman_hdmi_wide.jpeg -------------------------------------------------------------------------------- /m0sdock_usb_joystick/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /m0sdock_usb_joystick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/CMakeLists.txt -------------------------------------------------------------------------------- /m0sdock_usb_joystick/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/FreeRTOSConfig.h -------------------------------------------------------------------------------- /m0sdock_usb_joystick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/Makefile -------------------------------------------------------------------------------- /m0sdock_usb_joystick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/README.md -------------------------------------------------------------------------------- /m0sdock_usb_joystick/flash_prog_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/flash_prog_cfg.ini -------------------------------------------------------------------------------- /m0sdock_usb_joystick/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/main.c -------------------------------------------------------------------------------- /m0sdock_usb_joystick/proj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/proj.conf -------------------------------------------------------------------------------- /m0sdock_usb_joystick/usb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/usb_config.h -------------------------------------------------------------------------------- /m0sdock_usb_joystick/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/m0sdock_usb_joystick/usb_host.c -------------------------------------------------------------------------------- /tangnano20k/impl/.gitignore: -------------------------------------------------------------------------------- 1 | gwsynthesis/ 2 | pnr/ 3 | temp/ 4 | -------------------------------------------------------------------------------- /tangnano20k/impl/project_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/impl/project_process_config.json -------------------------------------------------------------------------------- /tangnano20k/pacman.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/pacman.gprj -------------------------------------------------------------------------------- /tangnano20k/src/dualshock_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/dualshock_controller.v -------------------------------------------------------------------------------- /tangnano20k/src/gowin_rpll_20k/pll_174m_20k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/gowin_rpll_20k/pll_174m_20k.ipc -------------------------------------------------------------------------------- /tangnano20k/src/gowin_rpll_20k/pll_174m_20k.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/gowin_rpll_20k/pll_174m_20k.v -------------------------------------------------------------------------------- /tangnano20k/src/gowin_rpll_20k/pll_240m_20k.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/gowin_rpll_20k/pll_240m_20k.ipc -------------------------------------------------------------------------------- /tangnano20k/src/gowin_rpll_20k/pll_240m_20k.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/gowin_rpll_20k/pll_240m_20k.v -------------------------------------------------------------------------------- /tangnano20k/src/pacman.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/pacman.cst -------------------------------------------------------------------------------- /tangnano20k/src/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano20k/src/top.sv -------------------------------------------------------------------------------- /tangnano9k/impl/.gitignore: -------------------------------------------------------------------------------- 1 | gwsynthesis/ 2 | pnr/ 3 | temp/ 4 | -------------------------------------------------------------------------------- /tangnano9k/impl/project_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/impl/project_process_config.json -------------------------------------------------------------------------------- /tangnano9k/pacman.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/pacman.gprj -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80_ALU.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80_ALU.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80_MCode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80_MCode.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80_Pack.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80_Pack.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80_Reg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80_Reg.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80_RegX.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80_RegX.vhd -------------------------------------------------------------------------------- /tangnano9k/src/T80/T80sed.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/T80/T80sed.vhd -------------------------------------------------------------------------------- /tangnano9k/src/gowin_clkdiv/gowin_clkdiv.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_clkdiv/gowin_clkdiv.ipc -------------------------------------------------------------------------------- /tangnano9k/src/gowin_clkdiv/gowin_clkdiv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_clkdiv/gowin_clkdiv.mod -------------------------------------------------------------------------------- /tangnano9k/src/gowin_clkdiv/gowin_clkdiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_clkdiv/gowin_clkdiv.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_dpb/ram.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_dpb/ram.ipc -------------------------------------------------------------------------------- /tangnano9k/src/gowin_dpb/ram.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_dpb/ram.mod -------------------------------------------------------------------------------- /tangnano9k/src/gowin_dpb/ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_dpb/ram.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_dpb/ram_tmp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_dpb/ram_tmp.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_174m.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_174m.ipc -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_174m.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_174m.mod -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_174m.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_174m.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_174m_tmp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_174m_tmp.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_240m.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_240m.ipc -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_240m.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_240m.mod -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_240m.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_240m.v -------------------------------------------------------------------------------- /tangnano9k/src/gowin_rpll/pll_240m_tmp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/gowin_rpll/pll_240m_tmp.v -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/audio_clock_regeneration_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/audio_clock_regeneration_packet.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/audio_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/audio_info_frame.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/audio_sample_packet.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/audio_sample_packet.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/auxiliary_video_information_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/auxiliary_video_information_info_frame.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/hdmi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/hdmi.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/packet_assembler.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/packet_assembler.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/packet_picker.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/packet_picker.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/serializer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/serializer.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/source_product_description_info_frame.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/source_product_description_info_frame.sv -------------------------------------------------------------------------------- /tangnano9k/src/hdmi/tmds_channel.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/hdmi/tmds_channel.sv -------------------------------------------------------------------------------- /tangnano9k/src/pacman.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/pacman.cst -------------------------------------------------------------------------------- /tangnano9k/src/pacman.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/pacman.sdc -------------------------------------------------------------------------------- /tangnano9k/src/roms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/roms/.gitignore -------------------------------------------------------------------------------- /tangnano9k/src/roms/bin2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/roms/bin2v.py -------------------------------------------------------------------------------- /tangnano9k/src/roms/conv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/roms/conv.sh -------------------------------------------------------------------------------- /tangnano9k/src/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/top.sv -------------------------------------------------------------------------------- /tangnano9k/src/video.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harbaum/Pacman-TangNano9k/HEAD/tangnano9k/src/video.v --------------------------------------------------------------------------------