├── CTRL.v ├── EX.v ├── ID.v ├── IF.v ├── MEM.v ├── WB.v ├── hilo_reg.v ├── lib ├── alu.v ├── decoder_2_4.v ├── decoder_5_32.v ├── decoder_6_64.v ├── defines.vh ├── div.v ├── mmu.v ├── mul │ ├── add.v │ ├── fa.v │ └── mul.v └── regfile.v ├── mycpu_core.v ├── mycpu_top.v └── readme.md /CTRL.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/CTRL.v -------------------------------------------------------------------------------- /EX.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/EX.v -------------------------------------------------------------------------------- /ID.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/ID.v -------------------------------------------------------------------------------- /IF.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/IF.v -------------------------------------------------------------------------------- /MEM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/MEM.v -------------------------------------------------------------------------------- /WB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/WB.v -------------------------------------------------------------------------------- /hilo_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/hilo_reg.v -------------------------------------------------------------------------------- /lib/alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/alu.v -------------------------------------------------------------------------------- /lib/decoder_2_4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/decoder_2_4.v -------------------------------------------------------------------------------- /lib/decoder_5_32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/decoder_5_32.v -------------------------------------------------------------------------------- /lib/decoder_6_64.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/decoder_6_64.v -------------------------------------------------------------------------------- /lib/defines.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/defines.vh -------------------------------------------------------------------------------- /lib/div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/div.v -------------------------------------------------------------------------------- /lib/mmu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/mmu.v -------------------------------------------------------------------------------- /lib/mul/add.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/mul/add.v -------------------------------------------------------------------------------- /lib/mul/fa.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/mul/fa.v -------------------------------------------------------------------------------- /lib/mul/mul.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/mul/mul.v -------------------------------------------------------------------------------- /lib/regfile.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/lib/regfile.v -------------------------------------------------------------------------------- /mycpu_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/mycpu_core.v -------------------------------------------------------------------------------- /mycpu_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/mycpu_top.v -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluctlight001/Nova132/HEAD/readme.md --------------------------------------------------------------------------------