├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── common ├── interface │ ├── hdmi_out.v │ ├── lcd.v │ ├── spi_slave.v │ └── ssd1306.v └── io_s_h.v ├── core ├── mega.v ├── mega_alu.v ├── mega_def.v ├── mega_ram.v ├── mega_reg.v └── mega_rom.v ├── custom_io ├── io_s_h.v ├── pio_s.v ├── rtc_s.v ├── spi_s.v ├── twi_s.v └── uart_s.v ├── customized └── atmega32u4.v └── mega_io ├── atmega_eep.v ├── atmega_pio.v ├── atmega_pll.v ├── atmega_spi_m.v ├── atmega_tim_10bit.v ├── atmega_tim_16bit.v ├── atmega_tim_8bit.v ├── atmega_uart.v └── sim ├── atmega_pio_sim.v ├── atmega_pll_sim.v ├── atmega_spi_m_sim.v ├── atmega_tim_16bit_sim.v └── atmega_tim_8bit_sim.v /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/README.md -------------------------------------------------------------------------------- /common/interface/hdmi_out.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/common/interface/hdmi_out.v -------------------------------------------------------------------------------- /common/interface/lcd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/common/interface/lcd.v -------------------------------------------------------------------------------- /common/interface/spi_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/common/interface/spi_slave.v -------------------------------------------------------------------------------- /common/interface/ssd1306.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/common/interface/ssd1306.v -------------------------------------------------------------------------------- /common/io_s_h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/common/io_s_h.v -------------------------------------------------------------------------------- /core/mega.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega.v -------------------------------------------------------------------------------- /core/mega_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega_alu.v -------------------------------------------------------------------------------- /core/mega_def.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega_def.v -------------------------------------------------------------------------------- /core/mega_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega_ram.v -------------------------------------------------------------------------------- /core/mega_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega_reg.v -------------------------------------------------------------------------------- /core/mega_rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/core/mega_rom.v -------------------------------------------------------------------------------- /custom_io/io_s_h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/io_s_h.v -------------------------------------------------------------------------------- /custom_io/pio_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/pio_s.v -------------------------------------------------------------------------------- /custom_io/rtc_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/rtc_s.v -------------------------------------------------------------------------------- /custom_io/spi_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/spi_s.v -------------------------------------------------------------------------------- /custom_io/twi_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/twi_s.v -------------------------------------------------------------------------------- /custom_io/uart_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/custom_io/uart_s.v -------------------------------------------------------------------------------- /customized/atmega32u4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/customized/atmega32u4.v -------------------------------------------------------------------------------- /mega_io/atmega_eep.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_eep.v -------------------------------------------------------------------------------- /mega_io/atmega_pio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_pio.v -------------------------------------------------------------------------------- /mega_io/atmega_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_pll.v -------------------------------------------------------------------------------- /mega_io/atmega_spi_m.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_spi_m.v -------------------------------------------------------------------------------- /mega_io/atmega_tim_10bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_tim_10bit.v -------------------------------------------------------------------------------- /mega_io/atmega_tim_16bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_tim_16bit.v -------------------------------------------------------------------------------- /mega_io/atmega_tim_8bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_tim_8bit.v -------------------------------------------------------------------------------- /mega_io/atmega_uart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/atmega_uart.v -------------------------------------------------------------------------------- /mega_io/sim/atmega_pio_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/sim/atmega_pio_sim.v -------------------------------------------------------------------------------- /mega_io/sim/atmega_pll_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/sim/atmega_pll_sim.v -------------------------------------------------------------------------------- /mega_io/sim/atmega_spi_m_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/sim/atmega_spi_m_sim.v -------------------------------------------------------------------------------- /mega_io/sim/atmega_tim_16bit_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/sim/atmega_tim_16bit_sim.v -------------------------------------------------------------------------------- /mega_io/sim/atmega_tim_8bit_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MorgothCreator/atmega-xmega-soft-core/HEAD/mega_io/sim/atmega_tim_8bit_sim.v --------------------------------------------------------------------------------