├── .gitignore ├── 74_adder.v ├── 74_cmp.v ├── 74_counter.v ├── 74_dffe.v ├── 74_eq.v ├── 74_extract.il ├── 74_extract.v ├── 74_models.v ├── 74_mux.v ├── 74ac.lib ├── benchmarks ├── VexRiscv.v ├── arlet_6502.v ├── arlet_6502_alu.v ├── axilxbar.v ├── cic5.v ├── cic5_tb.v ├── cordic_10_16.v ├── counter.v ├── counter_tb.v ├── dspmac_16_40.v ├── dspmac_16_40_tb.v ├── picorv32.v ├── picorv32_tb.v ├── pwm256.v ├── pwm256_tb.v ├── pwmled.v ├── pwmled_tb.v ├── sddac.v ├── sddac_tb.v ├── shifter64.v └── smartbextdep.v ├── bram.rules ├── equiv.ys ├── ic_count.py ├── kicad ├── 74xx.dcm ├── 74xx.lib ├── Makefile ├── generate_netlist.py └── parts.py ├── po74g.lib ├── sim └── Makefile ├── stat └── Makefile └── synth_74.ys /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/.gitignore -------------------------------------------------------------------------------- /74_adder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_adder.v -------------------------------------------------------------------------------- /74_cmp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_cmp.v -------------------------------------------------------------------------------- /74_counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_counter.v -------------------------------------------------------------------------------- /74_dffe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_dffe.v -------------------------------------------------------------------------------- /74_eq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_eq.v -------------------------------------------------------------------------------- /74_extract.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_extract.il -------------------------------------------------------------------------------- /74_extract.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_extract.v -------------------------------------------------------------------------------- /74_models.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_models.v -------------------------------------------------------------------------------- /74_mux.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74_mux.v -------------------------------------------------------------------------------- /74ac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/74ac.lib -------------------------------------------------------------------------------- /benchmarks/VexRiscv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/VexRiscv.v -------------------------------------------------------------------------------- /benchmarks/arlet_6502.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/arlet_6502.v -------------------------------------------------------------------------------- /benchmarks/arlet_6502_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/arlet_6502_alu.v -------------------------------------------------------------------------------- /benchmarks/axilxbar.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/axilxbar.v -------------------------------------------------------------------------------- /benchmarks/cic5.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/cic5.v -------------------------------------------------------------------------------- /benchmarks/cic5_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/cic5_tb.v -------------------------------------------------------------------------------- /benchmarks/cordic_10_16.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/cordic_10_16.v -------------------------------------------------------------------------------- /benchmarks/counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/counter.v -------------------------------------------------------------------------------- /benchmarks/counter_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/counter_tb.v -------------------------------------------------------------------------------- /benchmarks/dspmac_16_40.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/dspmac_16_40.v -------------------------------------------------------------------------------- /benchmarks/dspmac_16_40_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/dspmac_16_40_tb.v -------------------------------------------------------------------------------- /benchmarks/picorv32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/picorv32.v -------------------------------------------------------------------------------- /benchmarks/picorv32_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/picorv32_tb.v -------------------------------------------------------------------------------- /benchmarks/pwm256.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/pwm256.v -------------------------------------------------------------------------------- /benchmarks/pwm256_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/pwm256_tb.v -------------------------------------------------------------------------------- /benchmarks/pwmled.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/pwmled.v -------------------------------------------------------------------------------- /benchmarks/pwmled_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/pwmled_tb.v -------------------------------------------------------------------------------- /benchmarks/sddac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/sddac.v -------------------------------------------------------------------------------- /benchmarks/sddac_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/sddac_tb.v -------------------------------------------------------------------------------- /benchmarks/shifter64.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/shifter64.v -------------------------------------------------------------------------------- /benchmarks/smartbextdep.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/benchmarks/smartbextdep.v -------------------------------------------------------------------------------- /bram.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/bram.rules -------------------------------------------------------------------------------- /equiv.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/equiv.ys -------------------------------------------------------------------------------- /ic_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/ic_count.py -------------------------------------------------------------------------------- /kicad/74xx.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/kicad/74xx.dcm -------------------------------------------------------------------------------- /kicad/74xx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/kicad/74xx.lib -------------------------------------------------------------------------------- /kicad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/kicad/Makefile -------------------------------------------------------------------------------- /kicad/generate_netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/kicad/generate_netlist.py -------------------------------------------------------------------------------- /kicad/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/kicad/parts.py -------------------------------------------------------------------------------- /po74g.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/po74g.lib -------------------------------------------------------------------------------- /sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/sim/Makefile -------------------------------------------------------------------------------- /stat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/stat/Makefile -------------------------------------------------------------------------------- /synth_74.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/74xx-liberty/HEAD/synth_74.ys --------------------------------------------------------------------------------