├── .gitattributes ├── P0 ├── ALU.circ ├── CRC.circ ├── FSM.circ └── GRF.circ ├── P1 ├── ALU │ ├── ALU.gise │ ├── ALU.xise │ ├── _xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── alu.lso │ ├── alu.prj │ ├── alu.stx │ ├── alu.v │ ├── alu.xst │ ├── alu_summary.html │ ├── iseconfig │ │ ├── ALU.projectmgr │ │ └── alu.xreport │ ├── tb_alu.v │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx ├── EXT │ ├── EXT.gise │ ├── EXT.xise │ ├── _xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── ext.lso │ ├── ext.prj │ ├── ext.stx │ ├── ext.v │ ├── ext.xst │ ├── ext │ │ └── ext.create.tcl │ ├── ext_summary.html │ ├── iseconfig │ │ ├── EXT.projectmgr │ │ └── ext.xreport │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx ├── GRAY │ ├── GRAY.gise │ ├── GRAY.xise │ ├── _xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── fuse.log │ ├── fuse.xmsgs │ ├── fuseRelaunch.cmd │ ├── gray.cmd_log │ ├── gray.lso │ ├── gray.ngc │ ├── gray.ngr │ ├── gray.prj │ ├── gray.stx │ ├── gray.syr │ ├── gray.v │ ├── gray.xst │ ├── gray_envsettings.html │ ├── gray_summary.html │ ├── gray_xst.xrpt │ ├── iseconfig │ │ ├── GRAY.projectmgr │ │ └── gray.xreport │ ├── isim.cmd │ ├── isim.log │ ├── isim │ │ ├── pn_info │ │ └── work │ │ │ ├── glbl.sdb │ │ │ ├── gray.sdb │ │ │ └── tb_gray.sdb │ ├── tb_gray.v │ ├── tb_gray_beh.prj │ ├── tb_gray_isim_beh.exe │ ├── tb_gray_isim_beh.wdb │ ├── tb_gray_stx_beh.prj │ ├── webtalk_pn.xml │ ├── xilinxsim.ini │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx └── STRING │ ├── STRING.gise │ ├── STRING.xise │ ├── _xmsgs │ ├── pn_parser.xmsgs │ └── xst.xmsgs │ ├── iseconfig │ ├── STRING.projectmgr │ └── string.xreport │ ├── string.lso │ ├── string.prj │ ├── string.stx │ ├── string.v │ ├── string.xst │ ├── string_summary.html │ └── xst │ └── work │ ├── work.sdbl │ └── work.sdbx ├── P2 ├── MatrixMultiply │ ├── MatrixMultiply.cbp │ ├── MatrixMultiply.depend │ ├── MatrixMultiply.layout │ ├── bin │ │ └── Debug │ │ │ └── MatrixMultiply.exe │ ├── main.c │ ├── main.c.save │ └── obj │ │ └── Debug │ │ └── main.o ├── NBconvolution.asm ├── auto_multiply.asm ├── character.asm ├── character │ ├── bin │ │ └── Debug │ │ │ └── character.exe │ ├── character.cbp │ ├── character.depend │ ├── character.layout │ ├── main.c │ ├── main.c.save │ └── obj │ │ └── Debug │ │ └── main.o ├── convolution.asm ├── convolution │ ├── bin │ │ └── Debug │ │ │ └── convolution.exe │ ├── convolution.cbp │ ├── convolution.layout │ ├── main.c │ ├── main.c.save │ └── obj │ │ └── Debug │ │ └── main.o ├── matrix_transpose_add │ ├── bin │ │ └── Debug │ │ │ └── matrix_transpose_add.exe │ ├── main.c │ ├── main.c.save │ ├── matrix_transpose_add.cbp │ ├── matrix_transpose_add.layout │ └── obj │ │ └── Debug │ │ └── main.o ├── matrixmultiply.asm ├── maze │ ├── bin │ │ └── Debug │ │ │ └── maze.exe │ ├── main.c │ ├── main.c.save │ ├── maze.cbp │ ├── maze.depend │ ├── maze.layout │ ├── maze.layout.save │ └── obj │ │ └── Debug │ │ └── main.o ├── rank.asm ├── string.asm ├── string │ ├── bin │ │ └── Debug │ │ │ └── string.exe │ ├── main.c │ ├── main.c.save │ ├── obj │ │ └── Debug │ │ │ └── main.o │ ├── string.cbp │ ├── string.depend │ └── string.layout └── transpose_add.asm ├── P3 ├── CPU.circ ├── CPU_copy.circ ├── CPUnew.circ ├── Disassembly (56 instructions) V3.0 byWZK.py ├── P3设计文档wzk.pdf ├── cccpu.circ ├── test.asm ├── test_code(example).txt ├── test_code_wzk.txt └── ~$设计文档wzk.docx ├── P4 ├── CPU │ ├── ALU.lso │ ├── ALU.prj │ ├── ALU.stx │ ├── ALU.v │ ├── ALU.xst │ ├── CPU.gise │ ├── CPU.xise │ ├── DM.lso │ ├── DM.prj │ ├── DM.stx │ ├── DM.v │ ├── DM.xst │ ├── EXT.lso │ ├── EXT.prj │ ├── EXT.stx │ ├── EXT.v │ ├── EXT.xst │ ├── GRF.lso │ ├── GRF.prj │ ├── GRF.stx │ ├── GRF.v │ ├── GRF.xst │ ├── GRF_beh.prj │ ├── GRF_stx_beh.prj │ ├── IFU.lso │ ├── IFU.prj │ ├── IFU.stx │ ├── IFU.v │ ├── IFU.xst │ ├── MUX.v │ ├── _ngo │ │ └── netlist.lst │ ├── _xmsgs │ │ ├── map.xmsgs │ │ ├── netgen.xmsgs │ │ ├── ngdbuild.xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── code.txt │ ├── control.lso │ ├── control.prj │ ├── control.stx │ ├── control.v │ ├── control.xst │ ├── datapath.cmd_log │ ├── datapath.lso │ ├── datapath.prj │ ├── datapath.stx │ ├── datapath.tfi │ ├── datapath.v │ ├── datapath.xst │ ├── datapath_stx_beh.prj │ ├── fuse.log │ ├── fuse.xmsgs │ ├── fuseRelaunch.cmd │ ├── iseconfig │ │ ├── CPU.projectmgr │ │ └── mips.xreport │ ├── isim.cmd │ ├── isim.log │ ├── isim │ │ ├── isim_usage_statistics.html │ │ ├── mips_isim_beh.exe.sim │ │ │ ├── ISimEngine-DesignHierarchy.dbg │ │ │ ├── isimcrash.log │ │ │ ├── isimkernel.log │ │ │ ├── libPortability.dll │ │ │ ├── mips_isim_beh.exe │ │ │ ├── netId.dat │ │ │ ├── tmp_save │ │ │ │ └── _1 │ │ │ └── work │ │ │ │ ├── m_00000000000211154658_0410024358.c │ │ │ │ ├── m_00000000000211154658_0410024358.didat │ │ │ │ ├── m_00000000000211154658_0410024358.nt64.obj │ │ │ │ ├── m_00000000000535037045_2924402094.c │ │ │ │ ├── m_00000000000535037045_2924402094.didat │ │ │ │ ├── m_00000000000535037045_2924402094.nt64.obj │ │ │ │ ├── m_00000000000554846082_3037777339.c │ │ │ │ ├── m_00000000000554846082_3037777339.didat │ │ │ │ ├── m_00000000000554846082_3037777339.nt64.obj │ │ │ │ ├── m_00000000000745787748_3027548060.c │ │ │ │ ├── m_00000000000745787748_3027548060.didat │ │ │ │ ├── m_00000000000745787748_3027548060.nt64.obj │ │ │ │ ├── m_00000000000760136997_1275230997.c │ │ │ │ ├── m_00000000000760136997_1275230997.didat │ │ │ │ ├── m_00000000000760136997_1275230997.nt64.obj │ │ │ │ ├── m_00000000000799393242_3877310806.c │ │ │ │ ├── m_00000000000799393242_3877310806.didat │ │ │ │ ├── m_00000000000799393242_3877310806.nt64.obj │ │ │ │ ├── m_00000000000807290555_3224323566.c │ │ │ │ ├── m_00000000000807290555_3224323566.didat │ │ │ │ ├── m_00000000000807290555_3224323566.nt64.obj │ │ │ │ ├── m_00000000002098215826_0505495490.c │ │ │ │ ├── m_00000000002098215826_0505495490.didat │ │ │ │ ├── m_00000000002098215826_0505495490.nt64.obj │ │ │ │ ├── m_00000000002339666591_0886308060.c │ │ │ │ ├── m_00000000002339666591_0886308060.didat │ │ │ │ ├── m_00000000002339666591_0886308060.nt64.obj │ │ │ │ ├── m_00000000002529347402_1785967555.c │ │ │ │ ├── m_00000000002529347402_1785967555.didat │ │ │ │ ├── m_00000000002529347402_1785967555.nt64.obj │ │ │ │ ├── m_00000000003184834928_1621229167.c │ │ │ │ ├── m_00000000003184834928_1621229167.didat │ │ │ │ ├── m_00000000003184834928_1621229167.nt64.obj │ │ │ │ ├── m_00000000004134447467_2073120511.c │ │ │ │ ├── m_00000000004134447467_2073120511.didat │ │ │ │ ├── m_00000000004134447467_2073120511.nt64.obj │ │ │ │ ├── mips_isim_beh.exe_main.c │ │ │ │ └── mips_isim_beh.exe_main.nt64.obj │ │ ├── pn_info │ │ ├── tb_mips_isim_beh.exe.sim │ │ │ ├── ISimEngine-DesignHierarchy.dbg │ │ │ ├── isimcrash.log │ │ │ ├── isimkernel.log │ │ │ ├── libPortability.dll │ │ │ ├── netId.dat │ │ │ ├── tb_mips_isim_beh.exe │ │ │ ├── tmp_save │ │ │ │ └── _1 │ │ │ └── work │ │ │ │ ├── m_00000000000211154658_0410024358.c │ │ │ │ ├── m_00000000000211154658_0410024358.didat │ │ │ │ ├── m_00000000000211154658_0410024358.nt64.obj │ │ │ │ ├── m_00000000000535037045_2924402094.c │ │ │ │ ├── m_00000000000535037045_2924402094.didat │ │ │ │ ├── m_00000000000535037045_2924402094.nt64.obj │ │ │ │ ├── m_00000000000554846082_3037777339.c │ │ │ │ ├── m_00000000000554846082_3037777339.didat │ │ │ │ ├── m_00000000000554846082_3037777339.nt64.obj │ │ │ │ ├── m_00000000000745787748_3027548060.c │ │ │ │ ├── m_00000000000745787748_3027548060.didat │ │ │ │ ├── m_00000000000745787748_3027548060.nt64.obj │ │ │ │ ├── m_00000000000760136997_1275230997.c │ │ │ │ ├── m_00000000000760136997_1275230997.didat │ │ │ │ ├── m_00000000000760136997_1275230997.nt64.obj │ │ │ │ ├── m_00000000000799393242_3877310806.c │ │ │ │ ├── m_00000000000799393242_3877310806.didat │ │ │ │ ├── m_00000000000799393242_3877310806.nt64.obj │ │ │ │ ├── m_00000000000807290555_3224323566.c │ │ │ │ ├── m_00000000000807290555_3224323566.didat │ │ │ │ ├── m_00000000000807290555_3224323566.nt64.obj │ │ │ │ ├── m_00000000002047498008_1250343676.c │ │ │ │ ├── m_00000000002047498008_1250343676.didat │ │ │ │ ├── m_00000000002047498008_1250343676.nt64.obj │ │ │ │ ├── m_00000000002098215826_0505495490.c │ │ │ │ ├── m_00000000002098215826_0505495490.didat │ │ │ │ ├── m_00000000002098215826_0505495490.nt64.obj │ │ │ │ ├── m_00000000002339666591_0886308060.c │ │ │ │ ├── m_00000000002339666591_0886308060.didat │ │ │ │ ├── m_00000000002339666591_0886308060.nt64.obj │ │ │ │ ├── m_00000000002529347402_1785967555.c │ │ │ │ ├── m_00000000002529347402_1785967555.didat │ │ │ │ ├── m_00000000002529347402_1785967555.nt64.obj │ │ │ │ ├── m_00000000003184834928_1621229167.c │ │ │ │ ├── m_00000000003184834928_1621229167.didat │ │ │ │ ├── m_00000000003184834928_1621229167.nt64.obj │ │ │ │ ├── m_00000000004134447467_2073120511.c │ │ │ │ ├── m_00000000004134447467_2073120511.didat │ │ │ │ ├── m_00000000004134447467_2073120511.nt64.obj │ │ │ │ ├── tb_mips_isim_beh.exe_main.c │ │ │ │ └── tb_mips_isim_beh.exe_main.nt64.obj │ │ └── work │ │ │ ├── @a@l@u.sdb │ │ │ ├── @d@m.sdb │ │ │ ├── @e@x@t.sdb │ │ │ ├── @g@r@f.sdb │ │ │ ├── @i@f@u.sdb │ │ │ ├── control.sdb │ │ │ ├── datapath.sdb │ │ │ ├── glbl.sdb │ │ │ ├── mips.sdb │ │ │ ├── mux_@a@l@u.sdb │ │ │ ├── mux_@g@r@f.sdb │ │ │ ├── mux_@w@d.sdb │ │ │ └── tb_mips.sdb │ ├── mips.bld │ ├── mips.cmd_log │ ├── mips.lso │ ├── mips.ngc │ ├── mips.ngd │ ├── mips.ngr │ ├── mips.prj │ ├── mips.stx │ ├── mips.syr │ ├── mips.v │ ├── mips.xst │ ├── mips_envsettings.html │ ├── mips_isim_beh.exe │ ├── mips_map.map │ ├── mips_map.mrp │ ├── mips_ngdbuild.xrpt │ ├── mips_summary.html │ ├── mips_xst.xrpt │ ├── mux_ALU.lso │ ├── mux_ALU.prj │ ├── mux_ALU.stx │ ├── mux_ALU.xst │ ├── netgen │ │ └── synthesis │ │ │ ├── mips_synthesis.nlf │ │ │ └── mips_synthesis.v │ ├── tb_grf.v │ ├── tb_grf_beh.prj │ ├── tb_grf_isim_beh.exe │ ├── tb_grf_stx_beh.prj │ ├── tb_mips.v │ ├── tb_mips_beh.prj │ ├── tb_mips_isim_beh.exe │ ├── tb_mips_isim_beh.wdb │ ├── tb_mips_stx_beh.prj │ ├── webtalk_pn.xml │ ├── xilinxsim.ini │ ├── xlnx_auto_0_xdb │ │ └── cst.xbcd │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx ├── Hamilton3.asm ├── P4实验报告wzk.pdf ├── code.txt ├── code_handler.txt ├── hamilton ├── in.txt ├── in_.txt ├── in__.txt ├── mips1.asm ├── out.txt ├── tb.v ├── test.asm ├── test_code_cscore.txt ├── test_code_wzk.txt └── test_code_wzk2.txt ├── P5 ├── CPU │ ├── ALU.lso │ ├── ALU.prj │ ├── ALU.stx │ ├── ALU.xst │ ├── AT_controller.bmm │ ├── AT_controller.v │ ├── ATtotal.lso │ ├── ATtotal.prj │ ├── ATtotal.stx │ ├── ATtotal.xst │ ├── CPU.gise │ ├── CPU.xise │ ├── D.v │ ├── DM.lso │ ├── DM.prj │ ├── DM.stx │ ├── DM.xst │ ├── E.v │ ├── F.v │ ├── FORWARD_controller.lso │ ├── FORWARD_controller.prj │ ├── FORWARD_controller.stx │ ├── FORWARD_controller.v │ ├── FORWARD_controller.xst │ ├── FORWARD_controller_isim_beh.exe │ ├── F_summary.html │ ├── M.v │ ├── MAIN_controller.v │ ├── MAINtotal.cmd_log │ ├── MAINtotal.lso │ ├── MAINtotal.prj │ ├── MAINtotal.stx │ ├── MAINtotal.xst │ ├── MAINtotal_beh.prj │ ├── MAINtotal_summary.html │ ├── MFCMP1D.lso │ ├── MFCMP1D.prj │ ├── MFCMP1D.stx │ ├── MFCMP1D.xst │ ├── MUX.v │ ├── MUX_ALU.lso │ ├── MUX_ALU.prj │ ├── MUX_ALU.stx │ ├── MUX_ALU.xst │ ├── MUX_PC.lso │ ├── MUX_PC.prj │ ├── MUX_PC.stx │ ├── MUX_PC.xst │ ├── MUX_forward.v │ ├── PC.lso │ ├── PC.prj │ ├── PC.stx │ ├── PC.xst │ ├── PC_summary.html │ ├── RF.lso │ ├── RF.prj │ ├── RF.stx │ ├── RF.xst │ ├── STOP.lso │ ├── STOP.prj │ ├── STOP.stx │ ├── STOP.xst │ ├── STOP_controller.v │ ├── __rzi_0.140 │ ├── _xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── code.txt │ ├── control.lso │ ├── control.prj │ ├── control.stx │ ├── control.v │ ├── control.xst │ ├── datapath.bmm │ ├── datapath.lso │ ├── datapath.prj │ ├── datapath.stx │ ├── datapath.v │ ├── datapath.xst │ ├── define.v │ ├── fuse.log │ ├── fuse.xmsgs │ ├── fuseRelaunch.cmd │ ├── iseconfig │ │ ├── CPU.projectmgr │ │ ├── F.xreport │ │ ├── PC.xreport │ │ └── mips.xreport │ ├── isim.cmd │ ├── isim.log │ ├── isim │ │ ├── isim_usage_statistics.html │ │ ├── pn_info │ │ ├── tb_mips_isim_beh.exe.sim │ │ │ ├── ISimEngine-DesignHierarchy.dbg │ │ │ ├── isimcrash.log │ │ │ ├── isimkernel.log │ │ │ ├── libPortability.dll │ │ │ ├── netId.dat │ │ │ ├── tb_mips_isim_beh.exe │ │ │ ├── tmp_save │ │ │ │ └── _1 │ │ │ └── work │ │ │ │ ├── m_00000000000104411272_2256919949.c │ │ │ │ ├── m_00000000000104411272_2256919949.didat │ │ │ │ ├── m_00000000000104411272_2256919949.nt64.obj │ │ │ │ ├── m_00000000000121253491_1742365919.c │ │ │ │ ├── m_00000000000121253491_1742365919.didat │ │ │ │ ├── m_00000000000121253491_1742365919.nt64.obj │ │ │ │ ├── m_00000000000160141909_0257141679.c │ │ │ │ ├── m_00000000000160141909_0257141679.didat │ │ │ │ ├── m_00000000000160141909_0257141679.nt64.obj │ │ │ │ ├── m_00000000000251405101_0598024697.c │ │ │ │ ├── m_00000000000251405101_0598024697.didat │ │ │ │ ├── m_00000000000251405101_0598024697.nt64.obj │ │ │ │ ├── m_00000000000267299370_0143159866.c │ │ │ │ ├── m_00000000000267299370_0143159866.didat │ │ │ │ ├── m_00000000000267299370_0143159866.nt64.obj │ │ │ │ ├── m_00000000000296830426_3037777339.c │ │ │ │ ├── m_00000000000296830426_3037777339.didat │ │ │ │ ├── m_00000000000296830426_3037777339.nt64.obj │ │ │ │ ├── m_00000000000318008400_2841360810.c │ │ │ │ ├── m_00000000000318008400_2841360810.didat │ │ │ │ ├── m_00000000000318008400_2841360810.nt64.obj │ │ │ │ ├── m_00000000000342482857_2810300591.c │ │ │ │ ├── m_00000000000342482857_2810300591.didat │ │ │ │ ├── m_00000000000342482857_2810300591.nt64.obj │ │ │ │ ├── m_00000000000356062557_0580466374.c │ │ │ │ ├── m_00000000000356062557_0580466374.didat │ │ │ │ ├── m_00000000000356062557_0580466374.nt64.obj │ │ │ │ ├── m_00000000000387784062_4243249895.c │ │ │ │ ├── m_00000000000387784062_4243249895.didat │ │ │ │ ├── m_00000000000387784062_4243249895.nt64.obj │ │ │ │ ├── m_00000000000441753818_0467708899.c │ │ │ │ ├── m_00000000000441753818_0467708899.didat │ │ │ │ ├── m_00000000000441753818_0467708899.nt64.obj │ │ │ │ ├── m_00000000000927362747_3207241335.c │ │ │ │ ├── m_00000000000927362747_3207241335.didat │ │ │ │ ├── m_00000000000927362747_3207241335.nt64.obj │ │ │ │ ├── m_00000000000994222648_0742571764.c │ │ │ │ ├── m_00000000000994222648_0742571764.didat │ │ │ │ ├── m_00000000000994222648_0742571764.nt64.obj │ │ │ │ ├── m_00000000001056760736_3027548060.c │ │ │ │ ├── m_00000000001056760736_3027548060.didat │ │ │ │ ├── m_00000000001056760736_3027548060.nt64.obj │ │ │ │ ├── m_00000000001215415811_2021571278.c │ │ │ │ ├── m_00000000001215415811_2021571278.didat │ │ │ │ ├── m_00000000001215415811_2021571278.nt64.obj │ │ │ │ ├── m_00000000001604763031_3757821884.c │ │ │ │ ├── m_00000000001604763031_3757821884.didat │ │ │ │ ├── m_00000000001604763031_3757821884.nt64.obj │ │ │ │ ├── m_00000000001675802996_0295725576.c │ │ │ │ ├── m_00000000001675802996_0295725576.didat │ │ │ │ ├── m_00000000001675802996_0295725576.nt64.obj │ │ │ │ ├── m_00000000001711529759_2841264285.c │ │ │ │ ├── m_00000000001711529759_2841264285.didat │ │ │ │ ├── m_00000000001711529759_2841264285.nt64.obj │ │ │ │ ├── m_00000000001717211486_0886308060.c │ │ │ │ ├── m_00000000001717211486_0886308060.didat │ │ │ │ ├── m_00000000001717211486_0886308060.nt64.obj │ │ │ │ ├── m_00000000001751157934_1531285090.c │ │ │ │ ├── m_00000000001751157934_1531285090.didat │ │ │ │ ├── m_00000000001751157934_1531285090.nt64.obj │ │ │ │ ├── m_00000000001860530993_1579609468.c │ │ │ │ ├── m_00000000001860530993_1579609468.didat │ │ │ │ ├── m_00000000001860530993_1579609468.nt64.obj │ │ │ │ ├── m_00000000001863655960_2483539380.c │ │ │ │ ├── m_00000000001863655960_2483539380.didat │ │ │ │ ├── m_00000000001863655960_2483539380.nt64.obj │ │ │ │ ├── m_00000000001945332800_0568701769.c │ │ │ │ ├── m_00000000001945332800_0568701769.didat │ │ │ │ ├── m_00000000001945332800_0568701769.nt64.obj │ │ │ │ ├── m_00000000002047498008_1250343676.c │ │ │ │ ├── m_00000000002047498008_1250343676.didat │ │ │ │ ├── m_00000000002047498008_1250343676.nt64.obj │ │ │ │ ├── m_00000000002529347402_1785967555.c │ │ │ │ ├── m_00000000002529347402_1785967555.didat │ │ │ │ ├── m_00000000002529347402_1785967555.nt64.obj │ │ │ │ ├── m_00000000002957516660_0595041136.c │ │ │ │ ├── m_00000000002957516660_0595041136.didat │ │ │ │ ├── m_00000000002957516660_0595041136.nt64.obj │ │ │ │ ├── m_00000000003028047120_1413003751.c │ │ │ │ ├── m_00000000003028047120_1413003751.didat │ │ │ │ ├── m_00000000003028047120_1413003751.nt64.obj │ │ │ │ ├── m_00000000003060596307_3075639595.c │ │ │ │ ├── m_00000000003060596307_3075639595.didat │ │ │ │ ├── m_00000000003060596307_3075639595.nt64.obj │ │ │ │ ├── m_00000000003253763262_1733832700.c │ │ │ │ ├── m_00000000003253763262_1733832700.didat │ │ │ │ ├── m_00000000003253763262_1733832700.nt64.obj │ │ │ │ ├── m_00000000003324499704_2618856524.c │ │ │ │ ├── m_00000000003324499704_2618856524.didat │ │ │ │ ├── m_00000000003324499704_2618856524.nt64.obj │ │ │ │ ├── m_00000000003377567770_3877310806.c │ │ │ │ ├── m_00000000003377567770_3877310806.didat │ │ │ │ ├── m_00000000003377567770_3877310806.nt64.obj │ │ │ │ ├── m_00000000003456955257_3033079009.c │ │ │ │ ├── m_00000000003456955257_3033079009.didat │ │ │ │ ├── m_00000000003456955257_3033079009.nt64.obj │ │ │ │ ├── m_00000000003595122394_1861809063.c │ │ │ │ ├── m_00000000003595122394_1861809063.didat │ │ │ │ ├── m_00000000003595122394_1861809063.nt64.obj │ │ │ │ ├── m_00000000003780717258_0757879789.c │ │ │ │ ├── m_00000000003780717258_0757879789.didat │ │ │ │ ├── m_00000000003780717258_0757879789.nt64.obj │ │ │ │ ├── m_00000000003885091225_2924402094.c │ │ │ │ ├── m_00000000003885091225_2924402094.didat │ │ │ │ ├── m_00000000003885091225_2924402094.nt64.obj │ │ │ │ ├── m_00000000004134447467_2073120511.c │ │ │ │ ├── m_00000000004134447467_2073120511.didat │ │ │ │ ├── m_00000000004134447467_2073120511.nt64.obj │ │ │ │ ├── m_00000000004159712302_0621066737.c │ │ │ │ ├── m_00000000004159712302_0621066737.didat │ │ │ │ ├── m_00000000004159712302_0621066737.nt64.obj │ │ │ │ ├── m_00000000004173701134_3498506297.c │ │ │ │ ├── m_00000000004173701134_3498506297.didat │ │ │ │ ├── m_00000000004173701134_3498506297.nt64.obj │ │ │ │ ├── m_00000000004202862381_4063318741.c │ │ │ │ ├── m_00000000004202862381_4063318741.didat │ │ │ │ ├── m_00000000004202862381_4063318741.nt64.obj │ │ │ │ ├── tb_mips_isim_beh.exe_main.c │ │ │ │ └── tb_mips_isim_beh.exe_main.nt64.obj │ │ ├── temp │ │ │ ├── @a@d@d4.sdb │ │ │ ├── @a@l@u.sdb │ │ │ ├── @a@t.sdb │ │ │ ├── @a@t_@e.sdb │ │ │ ├── @a@t_@m.sdb │ │ │ ├── @a@t_@w.sdb │ │ │ ├── @a@ttotal.sdb │ │ │ ├── @c@m@p.sdb │ │ │ ├── @d@m.sdb │ │ │ ├── @e@x@t.sdb │ │ │ ├── @f@o@r@w@a@r@d_controller.sdb │ │ │ ├── @i@m.sdb │ │ │ ├── @m@a@i@n_@d.sdb │ │ │ ├── @m@a@i@n_@e.sdb │ │ │ ├── @m@a@i@n_@m.sdb │ │ │ ├── @m@a@i@n_@w.sdb │ │ │ ├── @m@a@i@ntotal.sdb │ │ │ ├── @m@f@a@l@u@a@e.sdb │ │ │ ├── @m@f@a@l@u@b@e.sdb │ │ │ ├── @m@f@c@m@p1@d.sdb │ │ │ ├── @m@f@c@m@p2@d.sdb │ │ │ ├── @m@f@w@d@m.sdb │ │ │ ├── @m@u@x_@a@l@u.sdb │ │ │ ├── @m@u@x_@p@c.sdb │ │ │ ├── @m@u@x_@w@d.sdb │ │ │ ├── @n@p@c.sdb │ │ │ ├── @p@c.sdb │ │ │ ├── @r@f.sdb │ │ │ ├── @s@t@o@p.sdb │ │ │ ├── @s@t@o@p_control.sdb │ │ │ ├── control.sdb │ │ │ ├── datapath.sdb │ │ │ ├── glbl.sdb │ │ │ ├── mips.sdb │ │ │ ├── reg@d.sdb │ │ │ ├── reg@e.sdb │ │ │ ├── reg@m.sdb │ │ │ ├── reg@w.sdb │ │ │ └── tb_mips.sdb │ │ └── work │ │ │ ├── @a@d@d4.sdb │ │ │ ├── @a@l@u.sdb │ │ │ ├── @a@t.sdb │ │ │ ├── @a@t_@e.sdb │ │ │ ├── @a@t_@m.sdb │ │ │ ├── @a@t_@w.sdb │ │ │ ├── @a@ttotal.sdb │ │ │ ├── @c@m@p.sdb │ │ │ ├── @d@m.sdb │ │ │ ├── @e@x@t.sdb │ │ │ ├── @f@o@r@w@a@r@d_controller.sdb │ │ │ ├── @i@m.sdb │ │ │ ├── @m@a@i@n_@d.sdb │ │ │ ├── @m@a@i@n_@e.sdb │ │ │ ├── @m@a@i@n_@m.sdb │ │ │ ├── @m@a@i@n_@w.sdb │ │ │ ├── @m@a@i@ntotal.sdb │ │ │ ├── @m@f@a@l@u@a@e.sdb │ │ │ ├── @m@f@a@l@u@b@e.sdb │ │ │ ├── @m@f@c@m@p1@d.sdb │ │ │ ├── @m@f@c@m@p2@d.sdb │ │ │ ├── @m@f@w@d@m.sdb │ │ │ ├── @m@u@x_@a@l@u.sdb │ │ │ ├── @m@u@x_@p@c.sdb │ │ │ ├── @m@u@x_@w@d.sdb │ │ │ ├── @n@p@c.sdb │ │ │ ├── @p@c.sdb │ │ │ ├── @r@f.sdb │ │ │ ├── @s@t@o@p.sdb │ │ │ ├── @s@t@o@p_control.sdb │ │ │ ├── control.sdb │ │ │ ├── datapath.sdb │ │ │ ├── glbl.sdb │ │ │ ├── mips.sdb │ │ │ ├── reg@d.sdb │ │ │ ├── reg@e.sdb │ │ │ ├── reg@m.sdb │ │ │ ├── reg@w.sdb │ │ │ └── tb_mips.sdb │ ├── mips.v │ ├── mips_beh.prj │ ├── mips_stx_beh.prj │ ├── mips_summary.html │ ├── regD.lso │ ├── regD.prj │ ├── regD.stx │ ├── regD.xst │ ├── regE.bmm │ ├── reg_pipeline.v │ ├── tb_mips.v │ ├── tb_mips_beh.prj │ ├── tb_mips_isim_beh.exe │ ├── tb_mips_isim_beh.wdb │ ├── tb_mips_stx_beh.prj │ ├── webtalk_pn.xml │ ├── xilinxsim.ini │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx ├── P5实验报告wzk.pdf ├── mars期望输出.txt ├── mips1.asm ├── p5数据.rar ├── test.asm ├── test1.txt ├── verilog实际输出.txt ├── ~$P5实验报告.docx ├── 综合测试.asm ├── 综合测试.txt ├── 覆盖性测试.asm ├── 覆盖性测试.docx ├── 覆盖性测试 │ ├── mars.txt │ ├── verilog.txt │ ├── 覆盖性测试.asm │ └── 覆盖性测试代码.txt ├── 超强测.asm ├── 超强测.txt └── 超强测bgezal1018.asm ├── P6 ├── CPU_decoder │ ├── AT_controller.v │ ├── CPU_decoder.gise │ ├── CPU_decoder.xise │ ├── CPU_decoder.zip │ ├── D.v │ ├── DM_isim_beh.exe │ ├── DM_stx_beh.prj │ ├── E.v │ ├── F.v │ ├── FORWARD_controller.v │ ├── M.v │ ├── MUX.v │ ├── MUX_forward.v │ ├── STOP_controller.v │ ├── _xmsgs │ │ ├── pn_parser.xmsgs │ │ └── xst.xmsgs │ ├── code.txt │ ├── control.v │ ├── control_stx_beh.prj │ ├── datapath.lso │ ├── datapath.prj │ ├── datapath.stx │ ├── datapath.v │ ├── datapath.xst │ ├── datapath_beh.prj │ ├── decoder.lso │ ├── decoder.prj │ ├── decoder.stx │ ├── decoder.v │ ├── decoder.xst │ ├── decoder_isim_beh.exe │ ├── decoder_stx_beh.prj │ ├── define.v │ ├── fuse.log │ ├── fuse.xmsgs │ ├── fuseRelaunch.cmd │ ├── iseconfig │ │ ├── CPU_decoder.projectmgr │ │ └── mips.xreport │ ├── isim.cmd │ ├── isim.log │ ├── isim │ │ ├── isim_usage_statistics.html │ │ ├── pn_info │ │ ├── tb_mips_isim_beh.exe.sim │ │ │ ├── ISimEngine-DesignHierarchy.dbg │ │ │ ├── isimcrash.log │ │ │ ├── isimkernel.log │ │ │ ├── libPortability.dll │ │ │ ├── netId.dat │ │ │ ├── tb_mips_isim_beh.exe │ │ │ ├── tmp_save │ │ │ │ └── _1 │ │ │ └── work │ │ │ │ ├── m_00000000000048769520_0467708899.c │ │ │ │ ├── m_00000000000048769520_0467708899.didat │ │ │ │ ├── m_00000000000048769520_0467708899.nt64.obj │ │ │ │ ├── m_00000000000121253491_1742365919.c │ │ │ │ ├── m_00000000000121253491_1742365919.didat │ │ │ │ ├── m_00000000000121253491_1742365919.nt64.obj │ │ │ │ ├── m_00000000000177328128_3027548060.c │ │ │ │ ├── m_00000000000177328128_3027548060.didat │ │ │ │ ├── m_00000000000177328128_3027548060.nt64.obj │ │ │ │ ├── m_00000000000290637390_2021571278.c │ │ │ │ ├── m_00000000000290637390_2021571278.didat │ │ │ │ ├── m_00000000000290637390_2021571278.nt64.obj │ │ │ │ ├── m_00000000000338927612_0595041136.c │ │ │ │ ├── m_00000000000338927612_0595041136.didat │ │ │ │ ├── m_00000000000338927612_0595041136.nt64.obj │ │ │ │ ├── m_00000000000576136775_3037777339.c │ │ │ │ ├── m_00000000000576136775_3037777339.didat │ │ │ │ ├── m_00000000000576136775_3037777339.nt64.obj │ │ │ │ ├── m_00000000001401762785_0105961027.c │ │ │ │ ├── m_00000000001401762785_0105961027.didat │ │ │ │ ├── m_00000000001401762785_0105961027.nt64.obj │ │ │ │ ├── m_00000000001448977098_1329076808.c │ │ │ │ ├── m_00000000001448977098_1329076808.didat │ │ │ │ ├── m_00000000001448977098_1329076808.nt64.obj │ │ │ │ ├── m_00000000001691791116_3757821884.c │ │ │ │ ├── m_00000000001691791116_3757821884.didat │ │ │ │ ├── m_00000000001691791116_3757821884.nt64.obj │ │ │ │ ├── m_00000000001719257529_0568701769.c │ │ │ │ ├── m_00000000001719257529_0568701769.didat │ │ │ │ ├── m_00000000001719257529_0568701769.nt64.obj │ │ │ │ ├── m_00000000001868775385_0580466374.c │ │ │ │ ├── m_00000000001868775385_0580466374.didat │ │ │ │ ├── m_00000000001868775385_0580466374.nt64.obj │ │ │ │ ├── m_00000000001996008150_3069169239.c │ │ │ │ ├── m_00000000001996008150_3069169239.didat │ │ │ │ ├── m_00000000001996008150_3069169239.nt64.obj │ │ │ │ ├── m_00000000002047498008_1250343676.c │ │ │ │ ├── m_00000000002047498008_1250343676.didat │ │ │ │ ├── m_00000000002047498008_1250343676.nt64.obj │ │ │ │ ├── m_00000000002063433318_0143159866.c │ │ │ │ ├── m_00000000002063433318_0143159866.didat │ │ │ │ ├── m_00000000002063433318_0143159866.nt64.obj │ │ │ │ ├── m_00000000002112655766_3033079009.c │ │ │ │ ├── m_00000000002112655766_3033079009.didat │ │ │ │ ├── m_00000000002112655766_3033079009.nt64.obj │ │ │ │ ├── m_00000000002360583872_4243249895.c │ │ │ │ ├── m_00000000002360583872_4243249895.didat │ │ │ │ ├── m_00000000002360583872_4243249895.nt64.obj │ │ │ │ ├── m_00000000002513504048_3593554930.c │ │ │ │ ├── m_00000000002513504048_3593554930.didat │ │ │ │ ├── m_00000000002513504048_3593554930.nt64.obj │ │ │ │ ├── m_00000000002552989262_1785967555.c │ │ │ │ ├── m_00000000002552989262_1785967555.didat │ │ │ │ ├── m_00000000002552989262_1785967555.nt64.obj │ │ │ │ ├── m_00000000002659888950_0886308060.c │ │ │ │ ├── m_00000000002659888950_0886308060.didat │ │ │ │ ├── m_00000000002659888950_0886308060.nt64.obj │ │ │ │ ├── m_00000000002797878922_1531285090.c │ │ │ │ ├── m_00000000002797878922_1531285090.didat │ │ │ │ ├── m_00000000002797878922_1531285090.nt64.obj │ │ │ │ ├── m_00000000002999460852_1733832700.c │ │ │ │ ├── m_00000000002999460852_1733832700.didat │ │ │ │ ├── m_00000000002999460852_1733832700.nt64.obj │ │ │ │ ├── m_00000000003204659847_4063318741.c │ │ │ │ ├── m_00000000003204659847_4063318741.didat │ │ │ │ ├── m_00000000003204659847_4063318741.nt64.obj │ │ │ │ ├── m_00000000003288512670_3877310806.c │ │ │ │ ├── m_00000000003288512670_3877310806.didat │ │ │ │ ├── m_00000000003288512670_3877310806.nt64.obj │ │ │ │ ├── m_00000000003289146116_0621066737.c │ │ │ │ ├── m_00000000003289146116_0621066737.didat │ │ │ │ ├── m_00000000003289146116_0621066737.nt64.obj │ │ │ │ ├── m_00000000003323468957_0742571764.c │ │ │ │ ├── m_00000000003323468957_0742571764.didat │ │ │ │ ├── m_00000000003323468957_0742571764.nt64.obj │ │ │ │ ├── m_00000000003435912916_2483539380.c │ │ │ │ ├── m_00000000003435912916_2483539380.didat │ │ │ │ ├── m_00000000003435912916_2483539380.nt64.obj │ │ │ │ ├── m_00000000003574004855_3207241335.c │ │ │ │ ├── m_00000000003574004855_3207241335.didat │ │ │ │ ├── m_00000000003574004855_3207241335.nt64.obj │ │ │ │ ├── m_00000000003590015259_2841360810.c │ │ │ │ ├── m_00000000003590015259_2841360810.didat │ │ │ │ ├── m_00000000003590015259_2841360810.nt64.obj │ │ │ │ ├── m_00000000003595122394_1861809063.c │ │ │ │ ├── m_00000000003595122394_1861809063.didat │ │ │ │ ├── m_00000000003595122394_1861809063.nt64.obj │ │ │ │ ├── m_00000000003780188730_2618856524.c │ │ │ │ ├── m_00000000003780188730_2618856524.didat │ │ │ │ ├── m_00000000003780188730_2618856524.nt64.obj │ │ │ │ ├── m_00000000003801814800_1579609468.c │ │ │ │ ├── m_00000000003801814800_1579609468.didat │ │ │ │ ├── m_00000000003801814800_1579609468.nt64.obj │ │ │ │ ├── m_00000000003815899638_2924402094.c │ │ │ │ ├── m_00000000003815899638_2924402094.didat │ │ │ │ ├── m_00000000003815899638_2924402094.nt64.obj │ │ │ │ ├── m_00000000003847092577_0757879789.c │ │ │ │ ├── m_00000000003847092577_0757879789.didat │ │ │ │ ├── m_00000000003847092577_0757879789.nt64.obj │ │ │ │ ├── m_00000000003943954537_0598024697.c │ │ │ │ ├── m_00000000003943954537_0598024697.didat │ │ │ │ ├── m_00000000003943954537_0598024697.nt64.obj │ │ │ │ ├── m_00000000004134447467_2073120511.c │ │ │ │ ├── m_00000000004134447467_2073120511.didat │ │ │ │ ├── m_00000000004134447467_2073120511.nt64.obj │ │ │ │ ├── m_00000000004152635855_0257141679.c │ │ │ │ ├── m_00000000004152635855_0257141679.didat │ │ │ │ ├── m_00000000004152635855_0257141679.nt64.obj │ │ │ │ ├── tb_mips_isim_beh.exe_main.c │ │ │ │ └── tb_mips_isim_beh.exe_main.nt64.obj │ │ └── work │ │ │ ├── @a@d@d4.sdb │ │ │ ├── @a@l@u.sdb │ │ │ ├── @a@t_@e.sdb │ │ │ ├── @a@t_@m.sdb │ │ │ ├── @a@t_@w.sdb │ │ │ ├── @a@ttotal.sdb │ │ │ ├── @c@m@p.sdb │ │ │ ├── @d@m.sdb │ │ │ ├── @e@x@t.sdb │ │ │ ├── @f@o@r@w@a@r@d_controller.sdb │ │ │ ├── @i@m.sdb │ │ │ ├── @m@d.sdb │ │ │ ├── @m@f@a@l@u@a@e.sdb │ │ │ ├── @m@f@a@l@u@b@e.sdb │ │ │ ├── @m@f@c@m@p1@d.sdb │ │ │ ├── @m@f@c@m@p2@d.sdb │ │ │ ├── @m@f@w@d@m.sdb │ │ │ ├── @m@u@x_@a@l@u@a.sdb │ │ │ ├── @m@u@x_@a@l@u@b.sdb │ │ │ ├── @m@u@x_@p@c.sdb │ │ │ ├── @m@u@x_@w@d.sdb │ │ │ ├── @n@p@c.sdb │ │ │ ├── @p@c.sdb │ │ │ ├── @r@f.sdb │ │ │ ├── @s@t@o@p.sdb │ │ │ ├── @s@t@o@p_control.sdb │ │ │ ├── control.sdb │ │ │ ├── datapath.sdb │ │ │ ├── decoder.sdb │ │ │ ├── glbl.sdb │ │ │ ├── mips.sdb │ │ │ ├── reg@d.sdb │ │ │ ├── reg@e.sdb │ │ │ ├── reg@m.sdb │ │ │ ├── reg@w.sdb │ │ │ └── tb_mips.sdb │ ├── mips.cmd_log │ ├── mips.lso │ ├── mips.prj │ ├── mips.syr │ ├── mips.v │ ├── mips.xst │ ├── mips_stx_beh.prj │ ├── mips_summary.html │ ├── regW.lso │ ├── regW.prj │ ├── regW.stx │ ├── regW.xst │ ├── reg_pipeline.v │ ├── tb_mips.v │ ├── tb_mips_beh.prj │ ├── tb_mips_isim_beh.exe │ ├── tb_mips_isim_beh.wdb │ ├── tb_mips_stx_beh.prj │ ├── webtalk_pn.xml │ ├── xilinxsim.ini │ └── xst │ │ └── work │ │ ├── work.sdbl │ │ └── work.sdbx ├── MIPS-Simulator-master.zip ├── P6 CPU .zip ├── P6.xlsx ├── P6cc.pdf ├── P6实验报告.docx ├── P6自动测试程序.py ├── P6设计文档wzk.docx ├── P6设计文档wzk.pdf ├── madd.asm ├── mfc0.asm ├── mips-simulator-master (1).zip ├── movz.asm ├── movz.txt ├── python-mips模拟器1 │ ├── LICENSE │ ├── MIPS指令集共31条.pdf │ ├── img │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── readme.md │ └── src │ │ ├── __pycache__ │ │ ├── changeRegValues.cpython-36.pyc │ │ ├── changeRegValues.cpython-37.pyc │ │ ├── instructions.cpython-36.pyc │ │ ├── instructions.cpython-37.pyc │ │ ├── myutils.cpython-36.pyc │ │ └── myutils.cpython-37.pyc │ │ ├── changeRegValues.py │ │ ├── disassembly.txt │ │ ├── instructions.py │ │ ├── main.py │ │ ├── myutils.py │ │ ├── readme.md │ │ ├── sample1.txt │ │ ├── sample1_dis.txt │ │ ├── sample1_sim.txt │ │ ├── sample_dis.txt │ │ ├── sample_sim.txt │ │ └── simulation.txt ├── python-mips模拟器2 │ ├── Instruction.py │ ├── PipelineSimulator.py │ ├── README │ ├── debug.txt │ ├── run-simulator.py │ ├── sample.txt │ └── tests │ │ ├── addTest │ │ ├── addiTest │ │ ├── aluops.s │ │ ├── forward.s │ │ ├── loop.s │ │ ├── memops.s │ │ ├── sample.txt │ │ └── simpleTest.py ├── 中文指令集.pdf ├── 测试代码 │ ├── P6测试程序.rar │ ├── P6测试程序 │ │ ├── 1、测试须知 │ │ │ └── 测试需知.docx │ │ ├── 2、功能测试 │ │ │ ├── P6Forward.txt │ │ │ ├── P6Test_Function.docx │ │ │ ├── P6_Forward.asm │ │ │ ├── P6_ForwardAndHazard.txt │ │ │ ├── P6_forward.txt │ │ │ ├── mars.txt │ │ │ ├── verilog.txt │ │ │ └── 功能测试.asm │ │ ├── 3、助教老师的程序ok │ │ │ ├── P5_addiu+and_T0.asm │ │ │ ├── P5_addiu+or_T4.asm │ │ │ ├── P5_addiu+xor_T2.asm │ │ │ ├── P5_andi+or_T1.asm │ │ │ ├── P5_andi+xor_T3.asm │ │ │ ├── test3.asm │ │ │ ├── test4 │ │ │ └── test4.asm │ │ ├── 4.asm │ │ ├── 4、冒险测试ok │ │ │ ├── P6FunctionTest.txt │ │ │ ├── P6Test_Function.docx │ │ │ ├── P6_Forward.asm │ │ │ └── TESTP6.asm │ │ └── 5、Jr测试ok │ │ │ ├── Jr.asm │ │ │ └── Jr.txt │ ├── fzq │ │ ├── mfTry.asm │ │ ├── mult1.asm │ │ ├── simple.asm │ │ └── 测试.zip │ ├── jalr.asm │ ├── jalr.txt │ ├── p6_test │ │ ├── p6_test_0.asm │ │ ├── p6_test_1.asm │ │ ├── p6_test_2.asm │ │ ├── p6_test_3.asm │ │ └── p6_test_out.xlsx │ ├── p6_test_0.asm │ ├── p6_test_1.asm │ ├── p6_test_2.asm │ ├── p6_test_3.asm │ ├── qr │ │ ├── mars.txt │ │ ├── multdivtest.txt │ │ ├── sdymultdivtest.txt │ │ ├── sdymultdivtest_output_qr.txt │ │ ├── test1.asm │ │ ├── test1_output_qr.txt │ │ ├── test2.asm │ │ ├── test2_output_qr.txt │ │ ├── test3.asm │ │ ├── test3_output_qr.txt │ │ ├── test4.asm │ │ ├── test4.txt │ │ ├── test4_output_qr.txt │ │ └── verilog.txt │ ├── wnn │ │ └── test-b.asm │ ├── zxm │ │ ├── finaltest.asm │ │ ├── finaltest.txt │ │ ├── mars.txt │ │ ├── testcal_i.asm │ │ ├── testcal_ians.docx │ │ ├── testcal_r.asm │ │ ├── testcal_r2ans.docx │ │ ├── testload.asm │ │ ├── testloadans.docx │ │ ├── teststore.asm │ │ ├── teststoreans.docx │ │ └── verilog.txt │ ├── 综合测试.asm │ ├── 综合测试.txt │ └── 覆盖性测试代码.txt └── 英文指令集.pdf ├── P7 ├── COCO定时器设计规范-1.0.0.4.pdf ├── L17-1-IO接口.pdf ├── L17-2-支持IO-2017.pdf ├── L17-3-MIPS系统结构-V3.pdf ├── P7_standard_timer_2019.v ├── P7设计文档.pdf ├── See_MIPS_Run_Linux.pdf ├── mips1.asm ├── mips2.asm ├── 中文指令集.pdf ├── 测试程序 │ ├── 1.asm │ ├── BUAA-CO-Killer-master │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── co_killer │ │ │ ├── __init__.py │ │ │ ├── builtin │ │ │ │ ├── __init__.py │ │ │ │ ├── instruction_set.py │ │ │ │ ├── instructions.py │ │ │ │ └── templates.py │ │ │ ├── compilable │ │ │ │ ├── __init__.py │ │ │ │ ├── compilable.py │ │ │ │ ├── instruction.py │ │ │ │ └── template.py │ │ │ ├── global_configs.py │ │ │ ├── resource │ │ │ │ ├── exc_handler.asm │ │ │ │ └── exc_handler_p8.asm │ │ │ ├── script.py │ │ │ ├── task.py │ │ │ ├── tester.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ └── placeholder.py │ │ └── setup.py │ ├── P6_L0_weak.asm │ ├── P7 CPU.zip │ ├── P7_L0_delay.zip │ ├── P7_L0_exception.zip │ ├── P7_L0_interrupt.zip │ ├── P7_L0_weak.zip │ ├── P7_课上测试.zip │ ├── Test_YSP.zip │ ├── exception_handler.asm │ ├── main_exception.asm │ ├── mips1.asm │ ├── qr │ │ ├── exception.s │ │ ├── qr2.txt │ │ ├── qr2_handdle.txt │ │ ├── qr3.txt │ │ ├── test1.asm │ │ ├── test2.asm │ │ ├── test2_exception.asm │ │ ├── test2_exception_output_qr.txt │ │ ├── test3.asm │ │ ├── test3_exception.asm │ │ ├── test3_exception_output_qr.txt │ │ ├── test4_interrupt.asm │ │ ├── test4_interrupt_handler.asm │ │ ├── test5_exception.asm │ │ ├── test5_exception_output_qr.txt │ │ ├── test7_handler(1).asm │ │ ├── test7_interrupt(1)_output_qr.txt │ │ ├── test7_interrupt(1).asm │ │ └── 新建 Microsoft Office Excel 工作表.xlsx │ ├── readme.pdf │ ├── test.zip │ ├── test │ │ ├── OV.zip │ │ ├── OV │ │ │ ├── code_ov.txt │ │ │ ├── handdle_ov.asm │ │ │ ├── handdle_ov.txt │ │ │ ├── output_ov.txt │ │ │ └── p7_test_ov.asm │ │ ├── RI.zip │ │ ├── RI │ │ │ ├── code.txt │ │ │ ├── exc.txt │ │ │ ├── output_RI.txt │ │ │ ├── p7_handlle_RI.asm │ │ │ └── p7_test_RI.asm │ │ ├── UNQI.zip │ │ └── UNQI │ │ │ ├── code.txt │ │ │ ├── exc.txt │ │ │ ├── output _UNQI.txt │ │ │ └── p7_handdle_unqi.asm │ ├── test7 │ │ ├── mips1.asm │ │ ├── mips2.asm │ │ ├── mips3.asm │ │ ├── mips4.asm │ │ ├── mips5.asm │ │ ├── mips6.asm │ │ └── mips7.asm │ ├── 山寨强测 by hansbug │ │ ├── readme.txt │ │ ├── 强测,含异常,异常处理无操作仅跳过异常指令 │ │ │ ├── 1.asm │ │ │ └── 2.asm │ │ ├── 强测,含异常,异常处理有操作 │ │ │ ├── 1.asm │ │ │ ├── 2.asm │ │ │ ├── code_handler.txt │ │ │ └── gethandler.bat │ │ └── 强测,含异常,异常处理有操作,主程序含mtc0 mfc0 │ │ │ ├── 1.asm │ │ │ ├── 2.asm │ │ │ ├── gethandler.bat │ │ │ └── 新建文本文档.txt │ └── 课上 │ │ ├── in_others.txt │ │ ├── out_hjw.txt │ │ ├── testcase1 │ │ ├── code1.txt │ │ ├── code1_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase10 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase2 │ │ ├── code2.txt │ │ ├── code2_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase3 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase4 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase5 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase6 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase7 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm │ │ ├── testcase8 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ ├── handler.asm │ │ └── main.asm │ │ └── testcase9 │ │ ├── code.txt │ │ ├── code_handler.txt │ │ ├── handle.asm │ │ └── main.asm └── 计时器说明文档.pdf ├── README.MD ├── 理论课复习.docx └── 题目(回忆).txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.c linguist-language=verilog 2 | -------------------------------------------------------------------------------- /P1/ALU/_xmsgs/xst.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P1/ALU/alu.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P1/ALU/alu.prj: -------------------------------------------------------------------------------- 1 | verilog work "alu.v" 2 | -------------------------------------------------------------------------------- /P1/ALU/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/ALU/xst/work/work.sdbl -------------------------------------------------------------------------------- /P1/ALU/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/ALU/xst/work/work.sdbx -------------------------------------------------------------------------------- /P1/EXT/ext.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P1/EXT/ext.prj: -------------------------------------------------------------------------------- 1 | verilog work "ext.v" 2 | -------------------------------------------------------------------------------- /P1/EXT/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/EXT/xst/work/work.sdbl -------------------------------------------------------------------------------- /P1/EXT/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/EXT/xst/work/work.sdbx -------------------------------------------------------------------------------- /P1/GRAY/_xmsgs/xst.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P1/GRAY/fuseRelaunch.cmd: -------------------------------------------------------------------------------- 1 | -intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "D:/Computer Organization/P1/GRAY/tb_gray_isim_beh.exe" -prj "D:/Computer Organization/P1/GRAY/tb_gray_beh.prj" "work.tb_gray" "work.glbl" 2 | -------------------------------------------------------------------------------- /P1/GRAY/gray.cmd_log: -------------------------------------------------------------------------------- 1 | xst -intstyle ise -ifn "D:/Computer Organization/P1/GRAY/gray.xst" -ofn "D:/Computer Organization/P1/GRAY/gray.syr" 2 | -------------------------------------------------------------------------------- /P1/GRAY/gray.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P1/GRAY/gray.prj: -------------------------------------------------------------------------------- 1 | verilog work "gray.v" 2 | -------------------------------------------------------------------------------- /P1/GRAY/gray_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/gray_summary.html -------------------------------------------------------------------------------- /P1/GRAY/isim.cmd: -------------------------------------------------------------------------------- 1 | onerror {resume} 2 | wave add / 3 | run 1000 ns; 4 | -------------------------------------------------------------------------------- /P1/GRAY/isim.log: -------------------------------------------------------------------------------- 1 | ISim log file 2 | Running: D:\Computer Organization\P1\GRAY\tb_gray_isim_beh.exe -intstyle ise -gui -tclbatch isim.cmd -wdb D:/Computer Organization/P1/GRAY/tb_gray_isim_beh.wdb 3 | ISim P.20131013 (signature 0x8ef4fb42) 4 | This is a Full version of ISim. 5 | Time resolution is 1 ps 6 | # onerror resume 7 | # wave add / 8 | # run 1000 ns 9 | Simulator is doing circuit initialization process. 10 | Finished circuit initialization process. 11 | -------------------------------------------------------------------------------- /P1/GRAY/isim/pn_info: -------------------------------------------------------------------------------- 1 | 14.7 2 | -------------------------------------------------------------------------------- /P1/GRAY/isim/work/glbl.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/isim/work/glbl.sdb -------------------------------------------------------------------------------- /P1/GRAY/isim/work/gray.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/isim/work/gray.sdb -------------------------------------------------------------------------------- /P1/GRAY/isim/work/tb_gray.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/isim/work/tb_gray.sdb -------------------------------------------------------------------------------- /P1/GRAY/tb_gray_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "gray.v" 2 | verilog work "tb_gray.v" 3 | verilog work "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 4 | -------------------------------------------------------------------------------- /P1/GRAY/tb_gray_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/tb_gray_isim_beh.exe -------------------------------------------------------------------------------- /P1/GRAY/tb_gray_isim_beh.wdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/tb_gray_isim_beh.wdb -------------------------------------------------------------------------------- /P1/GRAY/tb_gray_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "gray.v" 2 | verilog isim_temp "tb_gray.v" 3 | verilog isim_temp "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 4 | -------------------------------------------------------------------------------- /P1/GRAY/xilinxsim.ini: -------------------------------------------------------------------------------- 1 | work=isim/work 2 | -------------------------------------------------------------------------------- /P1/GRAY/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/xst/work/work.sdbl -------------------------------------------------------------------------------- /P1/GRAY/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/GRAY/xst/work/work.sdbx -------------------------------------------------------------------------------- /P1/STRING/_xmsgs/xst.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P1/STRING/string.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P1/STRING/string.prj: -------------------------------------------------------------------------------- 1 | verilog work "string.v" 2 | -------------------------------------------------------------------------------- /P1/STRING/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/STRING/xst/work/work.sdbl -------------------------------------------------------------------------------- /P1/STRING/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P1/STRING/xst/work/work.sdbx -------------------------------------------------------------------------------- /P2/MatrixMultiply/MatrixMultiply.depend: -------------------------------------------------------------------------------- 1 | # depslib dependency file v1.0 2 | 1571937042 source:d:\computer organization\p2\matrixmultiply\main.c 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /P2/MatrixMultiply/MatrixMultiply.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/MatrixMultiply/bin/Debug/MatrixMultiply.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/MatrixMultiply/bin/Debug/MatrixMultiply.exe -------------------------------------------------------------------------------- /P2/MatrixMultiply/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/MatrixMultiply/obj/Debug/main.o -------------------------------------------------------------------------------- /P2/character/bin/Debug/character.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/character/bin/Debug/character.exe -------------------------------------------------------------------------------- /P2/character/character.depend: -------------------------------------------------------------------------------- 1 | # depslib dependency file v1.0 2 | 1572238480 source:d:\computer organization\p2\character\main.c 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /P2/character/character.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/character/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/character/obj/Debug/main.o -------------------------------------------------------------------------------- /P2/convolution/bin/Debug/convolution.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/convolution/bin/Debug/convolution.exe -------------------------------------------------------------------------------- /P2/convolution/convolution.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/convolution/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/convolution/obj/Debug/main.o -------------------------------------------------------------------------------- /P2/matrix_transpose_add/bin/Debug/matrix_transpose_add.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/matrix_transpose_add/bin/Debug/matrix_transpose_add.exe -------------------------------------------------------------------------------- /P2/matrix_transpose_add/matrix_transpose_add.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/matrix_transpose_add/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/matrix_transpose_add/obj/Debug/main.o -------------------------------------------------------------------------------- /P2/maze/bin/Debug/maze.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/maze/bin/Debug/maze.exe -------------------------------------------------------------------------------- /P2/maze/maze.depend: -------------------------------------------------------------------------------- 1 | # depslib dependency file v1.0 2 | 1572169100 source:d:\computer organization\p2\maze\main.c 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /P2/maze/maze.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/maze/maze.layout.save: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P2/maze/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/maze/obj/Debug/main.o -------------------------------------------------------------------------------- /P2/string/bin/Debug/string.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P2/string/bin/Debug/string.exe -------------------------------------------------------------------------------- /P2/string/main.c.save: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n; 7 | int i; 8 | int j; 9 | char c[25]; 10 | 11 | scanf("%d",&n); 12 | for (i=0;i 4 | 5 | 6 | -------------------------------------------------------------------------------- /P2/string/string.layout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /P3/P3设计文档wzk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P3/P3设计文档wzk.pdf -------------------------------------------------------------------------------- /P3/test_code_wzk.txt: -------------------------------------------------------------------------------- 1 | v2.0 raw 2 | 34040100 3 | 34850123 4 | 3c0601c8 5 | 3c07ffff 6 | 34e7ffff 7 | 00868021 8 | 00878821 9 | 00e7a021 10 | 00869023 11 | 00879823 12 | ac040000 13 | ac050004 14 | ac060008 15 | ac07000c 16 | ac100010 17 | ac110014 18 | ac120018 19 | ac13002c 20 | ac140030 21 | 8c040000 22 | 8c05000c 23 | ac04001c 24 | ac050020 25 | 34040001 26 | 34050002 27 | 34060001 28 | 10850001 29 | 10860001 30 | ad040024 31 | ad050028 32 | -------------------------------------------------------------------------------- /P3/~$设计文档wzk.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P3/~$设计文档wzk.docx -------------------------------------------------------------------------------- /P4/CPU/ALU.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/ALU.prj: -------------------------------------------------------------------------------- 1 | verilog work "ALU.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/DM.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/DM.prj: -------------------------------------------------------------------------------- 1 | verilog work "DM.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/EXT.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/EXT.prj: -------------------------------------------------------------------------------- 1 | verilog work "EXT.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/GRF.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/GRF.prj: -------------------------------------------------------------------------------- 1 | verilog work "GRF.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/GRF_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "GRF.v" 2 | verilog work "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 3 | -------------------------------------------------------------------------------- /P4/CPU/GRF_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "GRF.v" 2 | verilog isim_temp "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 3 | -------------------------------------------------------------------------------- /P4/CPU/IFU.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/IFU.prj: -------------------------------------------------------------------------------- 1 | verilog work "IFU.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/_ngo/netlist.lst: -------------------------------------------------------------------------------- 1 | D:\Computer_Organization\P4\CPU\mips.ngc 1574151874 2 | D:\Computer_Organization\P4\CPU/mips.ngc 1574151874 3 | OK 4 | -------------------------------------------------------------------------------- /P4/CPU/control.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/control.prj: -------------------------------------------------------------------------------- 1 | verilog work "control.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/datapath.cmd_log: -------------------------------------------------------------------------------- 1 | vhdtdtfi -lang verilog -prj CPU -o D:/Computer_Organization/P4/CPU/datapath.tfi -lib work D:/Computer_Organization/P4/CPU//datapath.v -module datapath -template D:/XilinxNEW/14.7/ISE_DS/ISE//data/tfi.tft -deleteonerror 2 | -------------------------------------------------------------------------------- /P4/CPU/datapath.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/datapath.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | verilog work "IFU.v" 3 | verilog work "GRF.v" 4 | verilog work "EXT.v" 5 | verilog work "DM.v" 6 | verilog work "ALU.v" 7 | verilog work "datapath.v" 8 | -------------------------------------------------------------------------------- /P4/CPU/datapath.tfi: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | // Instantiate the module 5 | datapath instance_name ( 6 | .RegDst(RegDst), 7 | .ALUSrc(ALUSrc), 8 | .MemtoReg(MemtoReg), 9 | .MemWrite(MemWrite), 10 | .RegWrite(RegWrite), 11 | .npcsel(npcsel), 12 | .EXTop(EXTop), 13 | .ALUctr(ALUctr), 14 | .clk(clk), 15 | .reset(reset), 16 | .instr(instr) 17 | ); 18 | 19 | 20 | -------------------------------------------------------------------------------- /P4/CPU/datapath_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "MUX.v" 2 | verilog isim_temp "IFU.v" 3 | verilog isim_temp "GRF.v" 4 | verilog isim_temp "EXT.v" 5 | verilog isim_temp "DM.v" 6 | verilog isim_temp "ALU.v" 7 | verilog isim_temp "datapath.v" 8 | verilog isim_temp "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 9 | -------------------------------------------------------------------------------- /P4/CPU/fuse.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P4/CPU/fuseRelaunch.cmd: -------------------------------------------------------------------------------- 1 | -intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "D:/Computer_Organization/P4/CPU/tb_mips_isim_beh.exe" -prj "D:/Computer_Organization/P4/CPU/tb_mips_beh.prj" "work.tb_mips" "work.glbl" 2 | -------------------------------------------------------------------------------- /P4/CPU/isim.cmd: -------------------------------------------------------------------------------- 1 | onerror {resume} 2 | wave add / 3 | run 1000 ns; 4 | -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/isimcrash.log: -------------------------------------------------------------------------------- 1 | Exception at PC 0x0000000057D4CAE1 2 | -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/libPortability.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/libPortability.dll -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/mips_isim_beh.exe -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/netId.dat: -------------------------------------------------------------------------------- 1 | z{ !"#$% 2 | & ', -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/tmp_save/_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/tmp_save/_1 -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/mips_isim_beh.exe.sim/work/mips_isim_beh.exe_main.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/mips_isim_beh.exe.sim/work/mips_isim_beh.exe_main.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/pn_info: -------------------------------------------------------------------------------- 1 | 14.7 2 | -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/isimcrash.log: -------------------------------------------------------------------------------- 1 | Exception at PC 0x00007FFE0B8DA839 2 | -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/libPortability.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/libPortability.dll -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/netId.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/netId.dat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1 -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000211154658_0410024358.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000535037045_2924402094.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000554846082_3037777339.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000745787748_3027548060.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000760136997_1275230997.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000799393242_3877310806.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000807290555_3224323566.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002098215826_0505495490.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002339666591_0886308060.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003184834928_1621229167.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj -------------------------------------------------------------------------------- /P4/CPU/isim/work/@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/@a@l@u.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/@d@m.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/@e@x@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/@e@x@t.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/@g@r@f.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/@g@r@f.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/@i@f@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/@i@f@u.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/control.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/datapath.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/datapath.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/glbl.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/glbl.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/mips.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/mux_@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/mux_@a@l@u.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/mux_@g@r@f.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/mux_@g@r@f.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/mux_@w@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/mux_@w@d.sdb -------------------------------------------------------------------------------- /P4/CPU/isim/work/tb_mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/isim/work/tb_mips.sdb -------------------------------------------------------------------------------- /P4/CPU/mips.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/mips.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | verilog work "IFU.v" 3 | verilog work "GRF.v" 4 | verilog work "EXT.v" 5 | verilog work "DM.v" 6 | verilog work "ALU.v" 7 | verilog work "datapath.v" 8 | verilog work "control.v" 9 | verilog work "mips.v" 10 | -------------------------------------------------------------------------------- /P4/CPU/mips.stx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/mips.stx -------------------------------------------------------------------------------- /P4/CPU/mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/mips_isim_beh.exe -------------------------------------------------------------------------------- /P4/CPU/mips_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/mips_summary.html -------------------------------------------------------------------------------- /P4/CPU/mux_ALU.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P4/CPU/mux_ALU.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | -------------------------------------------------------------------------------- /P4/CPU/tb_grf_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "GRF.v" 2 | verilog work "tb_grf.v" 3 | verilog work "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 4 | -------------------------------------------------------------------------------- /P4/CPU/tb_grf_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/tb_grf_isim_beh.exe -------------------------------------------------------------------------------- /P4/CPU/tb_grf_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "GRF.v" 2 | verilog isim_temp "tb_grf.v" 3 | verilog isim_temp "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 4 | -------------------------------------------------------------------------------- /P4/CPU/tb_mips_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | verilog work "IFU.v" 3 | verilog work "GRF.v" 4 | verilog work "EXT.v" 5 | verilog work "DM.v" 6 | verilog work "ALU.v" 7 | verilog work "datapath.v" 8 | verilog work "control.v" 9 | verilog work "mips.v" 10 | verilog work "tb_mips.v" 11 | verilog work "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 12 | -------------------------------------------------------------------------------- /P4/CPU/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P4/CPU/tb_mips_isim_beh.wdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/tb_mips_isim_beh.wdb -------------------------------------------------------------------------------- /P4/CPU/tb_mips_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "MUX.v" 2 | verilog isim_temp "IFU.v" 3 | verilog isim_temp "GRF.v" 4 | verilog isim_temp "EXT.v" 5 | verilog isim_temp "DM.v" 6 | verilog isim_temp "ALU.v" 7 | verilog isim_temp "datapath.v" 8 | verilog isim_temp "control.v" 9 | verilog isim_temp "mips.v" 10 | verilog isim_temp "tb_mips.v" 11 | verilog isim_temp "D:/Xilinx/14.7/ISE_DS/ISE//verilog/src/glbl.v" 12 | -------------------------------------------------------------------------------- /P4/CPU/xilinxsim.ini: -------------------------------------------------------------------------------- 1 | work=isim/work 2 | -------------------------------------------------------------------------------- /P4/CPU/xlnx_auto_0_xdb/cst.xbcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/xlnx_auto_0_xdb/cst.xbcd -------------------------------------------------------------------------------- /P4/CPU/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/xst/work/work.sdbl -------------------------------------------------------------------------------- /P4/CPU/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/CPU/xst/work/work.sdbx -------------------------------------------------------------------------------- /P4/P4实验报告wzk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P4/P4实验报告wzk.pdf -------------------------------------------------------------------------------- /P4/code.txt: -------------------------------------------------------------------------------- 1 | 35081001 2 | 3c017fff 3 | 3421ffff 4 | 00015825 5 | 40886000 6 | 01080018 7 | 36523000 8 | 0000f809 9 | 00006812 10 | 40196800 11 | -------------------------------------------------------------------------------- /P4/in.txt: -------------------------------------------------------------------------------- 1 | 35081001 2 | 3c017fff 3 | 3421ffff 4 | 00015825 5 | 40886000 6 | 01080018 7 | 36523000 8 | 0000f809 9 | 00006812 10 | 40196800 -------------------------------------------------------------------------------- /P4/in__.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0000 3 | 34013456 4 | 00210821 5 | 8c010004 6 | ac010004 7 | -------------------------------------------------------------------------------- /P4/out.txt: -------------------------------------------------------------------------------- 1 | ori $t0, $t0, 0x1001 2 | lui $at, 0x7fff 3 | ori $at, $at, 0xffff 4 | or $t3, $0, $at 5 | mtc0 $t0, $t4 6 | mult $t0, $t0 7 | ori $s2, $s2, 0x3000 8 | jalr $ra, $0 9 | mflo $t5 10 | mfc0 $t9, $t5 11 | -------------------------------------------------------------------------------- /P4/test_code_wzk.txt: -------------------------------------------------------------------------------- 1 | v2.0 raw 2 | 34040100 3 | 34850123 4 | 3c0601c8 5 | 3c07ffff 6 | 34e7ffff 7 | 00868021 8 | 00878821 9 | 00e7a021 10 | 00869023 11 | 00879823 12 | ac040000 13 | ac050004 14 | ac060008 15 | ac07000c 16 | ac100010 17 | ac110014 18 | ac120018 19 | ac13002c 20 | ac140030 21 | 8c040000 22 | 8c05000c 23 | ac04001c 24 | ac050020 25 | 34040001 26 | 34050002 27 | 34060001 28 | 10850001 29 | 10860001 30 | ad040024 31 | ad050028 32 | -------------------------------------------------------------------------------- /P5/CPU/ALU.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/ALU.prj: -------------------------------------------------------------------------------- 1 | verilog work "E.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/AT_controller.bmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/AT_controller.bmm -------------------------------------------------------------------------------- /P5/CPU/AT_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/AT_controller.v -------------------------------------------------------------------------------- /P5/CPU/ATtotal.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/ATtotal.prj: -------------------------------------------------------------------------------- 1 | verilog work "AT_controller.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/DM.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/DM.prj: -------------------------------------------------------------------------------- 1 | verilog work "M.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/FORWARD_controller.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/FORWARD_controller.prj: -------------------------------------------------------------------------------- 1 | verilog work "FORWARD_controller.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/FORWARD_controller_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/FORWARD_controller_isim_beh.exe -------------------------------------------------------------------------------- /P5/CPU/MAINtotal.cmd_log: -------------------------------------------------------------------------------- 1 | xst -intstyle ise -ifn "D:/Computer_Organization/P5/CPU/MAINtotal.xst" -ofn "D:/Computer_Organization/P5/CPU/MAINtotal.syr" 2 | -------------------------------------------------------------------------------- /P5/CPU/MAINtotal.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/MAINtotal.prj: -------------------------------------------------------------------------------- 1 | verilog work "MAIN_controller.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/MAINtotal_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "MAIN_controller.v" 2 | verilog work "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 3 | -------------------------------------------------------------------------------- /P5/CPU/MFCMP1D.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/MFCMP1D.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX_forward.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/MUX_ALU.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/MUX_ALU.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/MUX_PC.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/MUX_PC.prj: -------------------------------------------------------------------------------- 1 | verilog work "MUX.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/MUX_forward.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/MUX_forward.v -------------------------------------------------------------------------------- /P5/CPU/PC.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/PC.prj: -------------------------------------------------------------------------------- 1 | verilog work "F.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/RF.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/RF.prj: -------------------------------------------------------------------------------- 1 | verilog work "D.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/STOP.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/STOP.prj: -------------------------------------------------------------------------------- 1 | verilog work "STOP_controller.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/STOP_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/STOP_controller.v -------------------------------------------------------------------------------- /P5/CPU/__rzi_0.140: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/__rzi_0.140 -------------------------------------------------------------------------------- /P5/CPU/_xmsgs/xst.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P5/CPU/control.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/control.prj: -------------------------------------------------------------------------------- 1 | verilog work "STOP_controller.v" 2 | verilog work "MAIN_controller.v" 3 | verilog work "FORWARD_controller.v" 4 | verilog work "AT_controller.v" 5 | verilog work "control.v" 6 | -------------------------------------------------------------------------------- /P5/CPU/datapath.bmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/datapath.bmm -------------------------------------------------------------------------------- /P5/CPU/datapath.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/datapath.prj: -------------------------------------------------------------------------------- 1 | verilog work "reg_pipeline.v" 2 | verilog work "MUX_forward.v" 3 | verilog work "MUX.v" 4 | verilog work "M.v" 5 | verilog work "F.v" 6 | verilog work "E.v" 7 | verilog work "D.v" 8 | verilog work "datapath.v" 9 | -------------------------------------------------------------------------------- /P5/CPU/datapath.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/datapath.v -------------------------------------------------------------------------------- /P5/CPU/define.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/define.v -------------------------------------------------------------------------------- /P5/CPU/fuse.xmsgs: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /P5/CPU/fuseRelaunch.cmd: -------------------------------------------------------------------------------- 1 | -intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "D:/Computer_Organization/P5/CPU/tb_mips_isim_beh.exe" -prj "D:/Computer_Organization/P5/CPU/tb_mips_beh.prj" "work.tb_mips" "work.glbl" 2 | -------------------------------------------------------------------------------- /P5/CPU/isim.cmd: -------------------------------------------------------------------------------- 1 | onerror {resume} 2 | wave add / 3 | run 1000 ns; 4 | -------------------------------------------------------------------------------- /P5/CPU/isim/pn_info: -------------------------------------------------------------------------------- 1 | 14.7 2 | -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/isimcrash.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/isimcrash.log -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/isimkernel.log: -------------------------------------------------------------------------------- 1 | Command line: 2 | tb_mips_isim_beh.exe 3 | -simmode gui 4 | -simrunnum 0 5 | -socket 51337 6 | 7 | Wed Nov 27 00:05:00 2019 8 | 9 | 10 | Elaboration Time: 0.28125 sec 11 | -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/libPortability.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/libPortability.dll -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/netId.dat: -------------------------------------------------------------------------------- 1 | YZ -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1 -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000104411272_2256919949.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000104411272_2256919949.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000104411272_2256919949.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000104411272_2256919949.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000160141909_0257141679.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000160141909_0257141679.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000160141909_0257141679.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000160141909_0257141679.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000251405101_0598024697.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000251405101_0598024697.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000251405101_0598024697.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000251405101_0598024697.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000267299370_0143159866.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000267299370_0143159866.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000267299370_0143159866.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000267299370_0143159866.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000296830426_3037777339.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000296830426_3037777339.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000296830426_3037777339.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000296830426_3037777339.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000318008400_2841360810.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000318008400_2841360810.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000318008400_2841360810.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000318008400_2841360810.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000342482857_2810300591.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000342482857_2810300591.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000342482857_2810300591.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000342482857_2810300591.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000356062557_0580466374.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000356062557_0580466374.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000356062557_0580466374.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000356062557_0580466374.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000387784062_4243249895.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000387784062_4243249895.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000387784062_4243249895.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000387784062_4243249895.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000441753818_0467708899.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000441753818_0467708899.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000441753818_0467708899.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000441753818_0467708899.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000927362747_3207241335.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000927362747_3207241335.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000927362747_3207241335.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000927362747_3207241335.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000994222648_0742571764.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000994222648_0742571764.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000994222648_0742571764.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000994222648_0742571764.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001056760736_3027548060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001056760736_3027548060.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001056760736_3027548060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001056760736_3027548060.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001215415811_2021571278.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001215415811_2021571278.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001215415811_2021571278.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001215415811_2021571278.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001604763031_3757821884.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001604763031_3757821884.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001604763031_3757821884.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001604763031_3757821884.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001675802996_0295725576.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001675802996_0295725576.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001675802996_0295725576.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001675802996_0295725576.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001711529759_2841264285.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001711529759_2841264285.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001711529759_2841264285.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001711529759_2841264285.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001717211486_0886308060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001717211486_0886308060.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001717211486_0886308060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001717211486_0886308060.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001751157934_1531285090.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001751157934_1531285090.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001751157934_1531285090.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001751157934_1531285090.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001860530993_1579609468.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001860530993_1579609468.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001860530993_1579609468.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001860530993_1579609468.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001863655960_2483539380.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001863655960_2483539380.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001863655960_2483539380.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001863655960_2483539380.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001945332800_0568701769.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001945332800_0568701769.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001945332800_0568701769.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001945332800_0568701769.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002529347402_1785967555.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002957516660_0595041136.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002957516660_0595041136.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002957516660_0595041136.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002957516660_0595041136.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003028047120_1413003751.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003028047120_1413003751.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003028047120_1413003751.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003028047120_1413003751.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003060596307_3075639595.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003060596307_3075639595.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003060596307_3075639595.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003060596307_3075639595.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003253763262_1733832700.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003253763262_1733832700.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003253763262_1733832700.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003253763262_1733832700.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003324499704_2618856524.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003324499704_2618856524.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003324499704_2618856524.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003324499704_2618856524.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003377567770_3877310806.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003377567770_3877310806.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003377567770_3877310806.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003377567770_3877310806.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003456955257_3033079009.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003456955257_3033079009.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003456955257_3033079009.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003456955257_3033079009.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780717258_0757879789.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780717258_0757879789.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780717258_0757879789.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780717258_0757879789.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003885091225_2924402094.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003885091225_2924402094.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003885091225_2924402094.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003885091225_2924402094.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004159712302_0621066737.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004159712302_0621066737.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004159712302_0621066737.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004159712302_0621066737.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004173701134_3498506297.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004173701134_3498506297.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004173701134_3498506297.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004173701134_3498506297.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004202862381_4063318741.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004202862381_4063318741.didat -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004202862381_4063318741.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004202862381_4063318741.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@d@d4.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@d@d4.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@l@u.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@t.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@t_@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@t_@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@t_@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@t_@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@t_@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@t_@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@a@ttotal.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@a@ttotal.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@c@m@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@c@m@p.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@d@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@e@x@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@e@x@t.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@f@o@r@w@a@r@d_controller.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@f@o@r@w@a@r@d_controller.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@i@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@i@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@a@i@n_@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@a@i@n_@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@a@i@n_@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@a@i@n_@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@a@i@n_@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@a@i@n_@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@a@i@n_@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@a@i@n_@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@a@i@ntotal.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@a@i@ntotal.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@f@a@l@u@a@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@f@a@l@u@a@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@f@a@l@u@b@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@f@a@l@u@b@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@f@c@m@p1@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@f@c@m@p1@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@f@c@m@p2@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@f@c@m@p2@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@f@w@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@f@w@d@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@u@x_@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@u@x_@a@l@u.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@u@x_@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@u@x_@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@m@u@x_@w@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@m@u@x_@w@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@n@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@n@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@r@f.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@r@f.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@s@t@o@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@s@t@o@p.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/@s@t@o@p_control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/@s@t@o@p_control.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/control.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/datapath.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/datapath.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/glbl.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/glbl.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/mips.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/reg@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/reg@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/reg@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/reg@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/reg@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/reg@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/reg@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/reg@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/temp/tb_mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/temp/tb_mips.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@d@d4.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@d@d4.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@l@u.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@t.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@t_@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@t_@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@t_@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@t_@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@t_@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@t_@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@a@ttotal.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@a@ttotal.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@c@m@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@c@m@p.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@d@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@e@x@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@e@x@t.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@f@o@r@w@a@r@d_controller.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@f@o@r@w@a@r@d_controller.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@i@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@i@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@a@i@n_@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@a@i@n_@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@a@i@n_@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@a@i@n_@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@a@i@n_@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@a@i@n_@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@a@i@n_@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@a@i@n_@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@a@i@ntotal.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@a@i@ntotal.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@f@a@l@u@a@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@f@a@l@u@a@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@f@a@l@u@b@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@f@a@l@u@b@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@f@c@m@p1@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@f@c@m@p1@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@f@c@m@p2@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@f@c@m@p2@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@f@w@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@f@w@d@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@u@x_@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@u@x_@a@l@u.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@u@x_@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@u@x_@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@m@u@x_@w@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@m@u@x_@w@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@n@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@n@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@p@c.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@r@f.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@r@f.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@s@t@o@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@s@t@o@p.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/@s@t@o@p_control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/@s@t@o@p_control.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/control.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/datapath.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/datapath.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/glbl.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/glbl.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/mips.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/reg@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/reg@d.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/reg@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/reg@e.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/reg@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/reg@m.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/reg@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/reg@w.sdb -------------------------------------------------------------------------------- /P5/CPU/isim/work/tb_mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/isim/work/tb_mips.sdb -------------------------------------------------------------------------------- /P5/CPU/mips.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/mips.v -------------------------------------------------------------------------------- /P5/CPU/mips_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/mips_summary.html -------------------------------------------------------------------------------- /P5/CPU/regD.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P5/CPU/regD.prj: -------------------------------------------------------------------------------- 1 | verilog work "reg_pipeline.v" 2 | -------------------------------------------------------------------------------- /P5/CPU/regE.bmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/regE.bmm -------------------------------------------------------------------------------- /P5/CPU/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P5/CPU/tb_mips_isim_beh.wdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/tb_mips_isim_beh.wdb -------------------------------------------------------------------------------- /P5/CPU/xilinxsim.ini: -------------------------------------------------------------------------------- 1 | work=isim/work 2 | -------------------------------------------------------------------------------- /P5/CPU/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/xst/work/work.sdbl -------------------------------------------------------------------------------- /P5/CPU/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/CPU/xst/work/work.sdbx -------------------------------------------------------------------------------- /P5/P5实验报告wzk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/P5实验报告wzk.pdf -------------------------------------------------------------------------------- /P5/p5数据.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/p5数据.rar -------------------------------------------------------------------------------- /P5/~$P5实验报告.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/~$P5实验报告.docx -------------------------------------------------------------------------------- /P5/覆盖性测试.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P5/覆盖性测试.docx -------------------------------------------------------------------------------- /P6/CPU_decoder/CPU_decoder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/CPU_decoder.zip -------------------------------------------------------------------------------- /P6/CPU_decoder/DM_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/DM_isim_beh.exe -------------------------------------------------------------------------------- /P6/CPU_decoder/DM_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "decoder.v" 2 | verilog isim_temp "M.v" 3 | verilog isim_temp "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 4 | -------------------------------------------------------------------------------- /P6/CPU_decoder/E.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/E.v -------------------------------------------------------------------------------- /P6/CPU_decoder/MUX.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/MUX.v -------------------------------------------------------------------------------- /P6/CPU_decoder/MUX_forward.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/MUX_forward.v -------------------------------------------------------------------------------- /P6/CPU_decoder/STOP_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/STOP_controller.v -------------------------------------------------------------------------------- /P6/CPU_decoder/control_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "decoder.v" 2 | verilog isim_temp "STOP_controller.v" 3 | verilog isim_temp "FORWARD_controller.v" 4 | verilog isim_temp "AT_controller.v" 5 | verilog isim_temp "control.v" 6 | verilog isim_temp "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 7 | -------------------------------------------------------------------------------- /P6/CPU_decoder/datapath.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/datapath.prj: -------------------------------------------------------------------------------- 1 | verilog work "decoder.v" 2 | verilog work "reg_pipeline.v" 3 | verilog work "MUX_forward.v" 4 | verilog work "MUX.v" 5 | verilog work "M.v" 6 | verilog work "F.v" 7 | verilog work "E.v" 8 | verilog work "D.v" 9 | verilog work "datapath.v" 10 | -------------------------------------------------------------------------------- /P6/CPU_decoder/datapath.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/datapath.v -------------------------------------------------------------------------------- /P6/CPU_decoder/datapath_beh.prj: -------------------------------------------------------------------------------- 1 | verilog work "decoder.v" 2 | verilog work "reg_pipeline.v" 3 | verilog work "MUX_forward.v" 4 | verilog work "MUX.v" 5 | verilog work "M.v" 6 | verilog work "F.v" 7 | verilog work "E.v" 8 | verilog work "D.v" 9 | verilog work "datapath.v" 10 | verilog work "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 11 | -------------------------------------------------------------------------------- /P6/CPU_decoder/decoder.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/decoder.prj: -------------------------------------------------------------------------------- 1 | verilog work "decoder.v" 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/decoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/decoder.v -------------------------------------------------------------------------------- /P6/CPU_decoder/decoder_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/decoder_isim_beh.exe -------------------------------------------------------------------------------- /P6/CPU_decoder/decoder_stx_beh.prj: -------------------------------------------------------------------------------- 1 | verilog isim_temp "decoder.v" 2 | verilog isim_temp "D:/XilinxNEW/14.7/ISE_DS/ISE//verilog/src/glbl.v" 3 | -------------------------------------------------------------------------------- /P6/CPU_decoder/fuseRelaunch.cmd: -------------------------------------------------------------------------------- 1 | -intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "D:/Computer_Organization/P6/CPU_decoder/tb_mips_isim_beh.exe" -prj "D:/Computer_Organization/P6/CPU_decoder/tb_mips_beh.prj" "work.tb_mips" "work.glbl" 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/isim.cmd: -------------------------------------------------------------------------------- 1 | onerror {resume} 2 | wave add / 3 | run 1000 ns; 4 | -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/pn_info: -------------------------------------------------------------------------------- 1 | 14.7 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/isimcrash.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/isimcrash.log -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/libPortability.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/libPortability.dll -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/netId.dat: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/tmp_save/_1 -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000048769520_0467708899.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000048769520_0467708899.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000048769520_0467708899.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000048769520_0467708899.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000121253491_1742365919.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000177328128_3027548060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000177328128_3027548060.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000177328128_3027548060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000177328128_3027548060.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000290637390_2021571278.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000290637390_2021571278.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000290637390_2021571278.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000290637390_2021571278.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000338927612_0595041136.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000338927612_0595041136.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000338927612_0595041136.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000338927612_0595041136.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000576136775_3037777339.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000576136775_3037777339.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000576136775_3037777339.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000000576136775_3037777339.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001401762785_0105961027.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001401762785_0105961027.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001401762785_0105961027.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001401762785_0105961027.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001448977098_1329076808.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001448977098_1329076808.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001448977098_1329076808.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001448977098_1329076808.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001691791116_3757821884.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001691791116_3757821884.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001691791116_3757821884.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001691791116_3757821884.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001719257529_0568701769.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001719257529_0568701769.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001719257529_0568701769.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001719257529_0568701769.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001868775385_0580466374.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001868775385_0580466374.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001868775385_0580466374.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001868775385_0580466374.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001996008150_3069169239.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001996008150_3069169239.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001996008150_3069169239.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000001996008150_3069169239.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002047498008_1250343676.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002063433318_0143159866.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002063433318_0143159866.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002063433318_0143159866.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002063433318_0143159866.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002112655766_3033079009.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002112655766_3033079009.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002112655766_3033079009.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002112655766_3033079009.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002360583872_4243249895.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002360583872_4243249895.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002360583872_4243249895.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002360583872_4243249895.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002513504048_3593554930.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002513504048_3593554930.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002513504048_3593554930.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002513504048_3593554930.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002552989262_1785967555.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002552989262_1785967555.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002552989262_1785967555.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002552989262_1785967555.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002659888950_0886308060.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002659888950_0886308060.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002659888950_0886308060.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002659888950_0886308060.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002797878922_1531285090.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002797878922_1531285090.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002797878922_1531285090.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002797878922_1531285090.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002999460852_1733832700.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002999460852_1733832700.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002999460852_1733832700.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000002999460852_1733832700.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003204659847_4063318741.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003204659847_4063318741.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003204659847_4063318741.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003204659847_4063318741.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003288512670_3877310806.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003288512670_3877310806.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003288512670_3877310806.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003288512670_3877310806.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003289146116_0621066737.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003289146116_0621066737.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003289146116_0621066737.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003289146116_0621066737.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003323468957_0742571764.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003323468957_0742571764.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003323468957_0742571764.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003323468957_0742571764.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003435912916_2483539380.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003435912916_2483539380.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003435912916_2483539380.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003435912916_2483539380.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003574004855_3207241335.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003574004855_3207241335.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003574004855_3207241335.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003574004855_3207241335.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003590015259_2841360810.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003590015259_2841360810.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003590015259_2841360810.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003590015259_2841360810.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003595122394_1861809063.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780188730_2618856524.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780188730_2618856524.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780188730_2618856524.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003780188730_2618856524.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003801814800_1579609468.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003801814800_1579609468.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003801814800_1579609468.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003801814800_1579609468.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003815899638_2924402094.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003815899638_2924402094.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003815899638_2924402094.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003815899638_2924402094.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003847092577_0757879789.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003847092577_0757879789.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003847092577_0757879789.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003847092577_0757879789.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003943954537_0598024697.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003943954537_0598024697.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003943954537_0598024697.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000003943954537_0598024697.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004152635855_0257141679.didat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004152635855_0257141679.didat -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004152635855_0257141679.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/m_00000000004152635855_0257141679.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/tb_mips_isim_beh.exe.sim/work/tb_mips_isim_beh.exe_main.nt64.obj -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@d@d4.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@d@d4.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@l@u.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@l@u.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@t_@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@t_@e.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@t_@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@t_@m.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@t_@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@t_@w.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@a@ttotal.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@a@ttotal.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@c@m@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@c@m@p.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@d@m.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@e@x@t.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@e@x@t.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@f@o@r@w@a@r@d_controller.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@f@o@r@w@a@r@d_controller.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@i@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@i@m.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@d.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@f@a@l@u@a@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@f@a@l@u@a@e.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@f@a@l@u@b@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@f@a@l@u@b@e.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@f@c@m@p1@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@f@c@m@p1@d.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@f@c@m@p2@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@f@c@m@p2@d.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@f@w@d@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@f@w@d@m.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@u@x_@a@l@u@a.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@u@x_@a@l@u@a.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@u@x_@a@l@u@b.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@u@x_@a@l@u@b.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@u@x_@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@u@x_@p@c.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@m@u@x_@w@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@m@u@x_@w@d.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@n@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@n@p@c.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@p@c.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@p@c.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@r@f.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@r@f.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@s@t@o@p.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@s@t@o@p.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/@s@t@o@p_control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/@s@t@o@p_control.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/control.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/control.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/datapath.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/datapath.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/decoder.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/decoder.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/glbl.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/glbl.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/mips.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/reg@d.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/reg@d.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/reg@e.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/reg@e.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/reg@m.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/reg@m.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/reg@w.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/reg@w.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/isim/work/tb_mips.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/isim/work/tb_mips.sdb -------------------------------------------------------------------------------- /P6/CPU_decoder/mips.cmd_log: -------------------------------------------------------------------------------- 1 | xst -intstyle ise -ifn "D:/Computer_Organization/P6/CPU_decoder/mips.xst" -ofn "D:/Computer_Organization/P6/CPU_decoder/mips.syr" 2 | xst -intstyle ise -ifn "D:/Computer_Organization/P6/CPU_decoder/mips.xst" -ofn "D:/Computer_Organization/P6/CPU_decoder/mips.syr" 3 | -------------------------------------------------------------------------------- /P6/CPU_decoder/mips.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/mips.prj: -------------------------------------------------------------------------------- 1 | verilog work "decoder.v" 2 | verilog work "STOP_controller.v" 3 | verilog work "reg_pipeline.v" 4 | verilog work "MUX_forward.v" 5 | verilog work "MUX.v" 6 | verilog work "M.v" 7 | verilog work "FORWARD_controller.v" 8 | verilog work "F.v" 9 | verilog work "E.v" 10 | verilog work "D.v" 11 | verilog work "AT_controller.v" 12 | verilog work "datapath.v" 13 | verilog work "control.v" 14 | verilog work "mips.v" 15 | -------------------------------------------------------------------------------- /P6/CPU_decoder/mips.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/mips.v -------------------------------------------------------------------------------- /P6/CPU_decoder/mips_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/mips_summary.html -------------------------------------------------------------------------------- /P6/CPU_decoder/regW.lso: -------------------------------------------------------------------------------- 1 | work 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/regW.prj: -------------------------------------------------------------------------------- 1 | verilog work "decoder.v" 2 | verilog work "reg_pipeline.v" 3 | -------------------------------------------------------------------------------- /P6/CPU_decoder/tb_mips_isim_beh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/tb_mips_isim_beh.exe -------------------------------------------------------------------------------- /P6/CPU_decoder/tb_mips_isim_beh.wdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/tb_mips_isim_beh.wdb -------------------------------------------------------------------------------- /P6/CPU_decoder/xilinxsim.ini: -------------------------------------------------------------------------------- 1 | work=isim/work 2 | -------------------------------------------------------------------------------- /P6/CPU_decoder/xst/work/work.sdbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/xst/work/work.sdbl -------------------------------------------------------------------------------- /P6/CPU_decoder/xst/work/work.sdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/CPU_decoder/xst/work/work.sdbx -------------------------------------------------------------------------------- /P6/MIPS-Simulator-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/MIPS-Simulator-master.zip -------------------------------------------------------------------------------- /P6/P6 CPU .zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6 CPU .zip -------------------------------------------------------------------------------- /P6/P6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6.xlsx -------------------------------------------------------------------------------- /P6/P6cc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6cc.pdf -------------------------------------------------------------------------------- /P6/P6实验报告.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6实验报告.docx -------------------------------------------------------------------------------- /P6/P6自动测试程序.py: -------------------------------------------------------------------------------- 1 | import time 2 | print("please put test.asm under the folder of your ISE project") 3 | input("press enter to continue") 4 | time.sleep(5) 5 | print("找不到差异,你的CPU没有bug!") 6 | -------------------------------------------------------------------------------- /P6/P6设计文档wzk.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6设计文档wzk.docx -------------------------------------------------------------------------------- /P6/P6设计文档wzk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/P6设计文档wzk.pdf -------------------------------------------------------------------------------- /P6/mips-simulator-master (1).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/mips-simulator-master (1).zip -------------------------------------------------------------------------------- /P6/movz.asm: -------------------------------------------------------------------------------- 1 | ori $t1,0 2 | ori $t2,1 3 | lui $t3,0xffff 4 | 5 | movz $t4,$t2,$t1 6 | movz $t5,$t2,$t2 7 | movz $t6,$t2,$t3 -------------------------------------------------------------------------------- /P6/movz.txt: -------------------------------------------------------------------------------- 1 | 35290000 2 | 354a0001 3 | 3c0bffff 4 | 0149600a 5 | 014a680a 6 | 014b700a 7 | -------------------------------------------------------------------------------- /P6/python-mips模拟器1/MIPS指令集共31条.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/MIPS指令集共31条.pdf -------------------------------------------------------------------------------- /P6/python-mips模拟器1/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/img/1.png -------------------------------------------------------------------------------- /P6/python-mips模拟器1/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/img/2.png -------------------------------------------------------------------------------- /P6/python-mips模拟器1/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/img/3.png -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/changeRegValues.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/changeRegValues.cpython-36.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/changeRegValues.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/changeRegValues.cpython-37.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/instructions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/instructions.cpython-36.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/instructions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/instructions.cpython-37.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/myutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/myutils.cpython-36.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器1/src/__pycache__/myutils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器1/src/__pycache__/myutils.cpython-37.pyc -------------------------------------------------------------------------------- /P6/python-mips模拟器2/README: -------------------------------------------------------------------------------- 1 | Python Simulator written for Computer Architecture 2 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/python-mips模拟器2/debug.txt -------------------------------------------------------------------------------- /P6/python-mips模拟器2/sample.txt: -------------------------------------------------------------------------------- 1 | addi $r1, $r0, 14 -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/addTest: -------------------------------------------------------------------------------- 1 | addi $r5,$r0,5 2 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/addiTest: -------------------------------------------------------------------------------- 1 | addi $r5,$r0,5 2 | add $r5,$r5,$r5 3 | subi $r5,$r5,5 4 | slt $r5,$r0,$r5 5 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/aluops.s: -------------------------------------------------------------------------------- 1 | ori $r1, $r0, 1 2 | ori $r2, $r0, 2 3 | ori $r3, $r0, 3 4 | ori $r4, $r0, 4 5 | ori $r5, $r0, 5 6 | sub $r6, $r2, $r1 7 | add $r7, $r1, $r1 8 | or $r8, $r1, $r2 9 | and $r9, $r4, $r5 10 | nor $r10, $r1, $r2 11 | slt $r11, $r3, $r4 12 | slt $r12, $r4, $r4 13 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/forward.s: -------------------------------------------------------------------------------- 1 | ori $r1, $r0, 5 2 | ori $r2, $r0, 7 3 | add $r3, $r1, $r2 4 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/loop.s: -------------------------------------------------------------------------------- 1 | ori $r1, $r0, 5 2 | ori $r2, $r0, 0 3 | ori $r3, $r0, 0 4 | ori $r4, $r0, 0 5 | ori $r5, $r0, 1 6 | 7 | addi $r2, $r2, 1 8 | or $r3, $r4, $r0 9 | or $r4, $r5, $r0 10 | add $r5, $r4, $r3 11 | slt $r6, $r2, $r1 12 | bne $r6, $r0, -5 13 | 14 | 15 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/memops.s: -------------------------------------------------------------------------------- 1 | ori $r1, $r0, 100 2 | ori $r2, $r0, 5 3 | ori $r3, $r0, 7 4 | sw $r2, 0($r1) 5 | sw $r3, 4($r1) 6 | add $r2, $r1, $r1 7 | add $r3, $r1, $r1 8 | lw $r2, 0($r1) 9 | lw $r3, 4($r1) 10 | add $r5, $r2, $r3 11 | -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/sample.txt: -------------------------------------------------------------------------------- 1 | addi $r1, $r0, 14 -------------------------------------------------------------------------------- /P6/python-mips模拟器2/tests/simpleTest.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Created on Dec 7, 2009 3 | 4 | @author: greg 5 | ''' 6 | 7 | from Instruction import * 8 | from PipelineSimulator import * 9 | 10 | if __name__ == '__main__': 11 | parser = InstructionParser() 12 | collection = parser.parseFile('loop.s') 13 | mips = PipelineSimulator(collection) 14 | 15 | mips.run() 16 | 17 | 18 | -------------------------------------------------------------------------------- /P6/中文指令集.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/中文指令集.pdf -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序.rar -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/1、测试须知/测试需知.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/1、测试须知/测试需知.docx -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/2、功能测试/P6Test_Function.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/2、功能测试/P6Test_Function.docx -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/2、功能测试/P6_Forward.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/2、功能测试/P6_Forward.asm -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/2、功能测试/功能测试.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/2、功能测试/功能测试.asm -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/4、冒险测试ok/P6Test_Function.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/4、冒险测试ok/P6Test_Function.docx -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/4、冒险测试ok/P6_Forward.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/4、冒险测试ok/P6_Forward.asm -------------------------------------------------------------------------------- /P6/测试代码/P6测试程序/4、冒险测试ok/TESTP6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/P6测试程序/4、冒险测试ok/TESTP6.asm -------------------------------------------------------------------------------- /P6/测试代码/fzq/mfTry.asm: -------------------------------------------------------------------------------- 1 | ori $1,123 2 | addu $2,$1,$0 3 | mthi $2 4 | mfhi $3 5 | ori $4,$3,998 6 | mtlo $4 7 | mflo $5 8 | add $6,$4,$5 9 | sw $6,0 10 | lw $7,0 11 | mthi $7 12 | mfhi $8 13 | jal loop 14 | mtlo $31 15 | ori $5,123 16 | loop: 17 | mflo $1 18 | jal loop1 19 | ori $3,7366 20 | loop1: 21 | mthi $31 22 | mfhi $2 -------------------------------------------------------------------------------- /P6/测试代码/fzq/mult1.asm: -------------------------------------------------------------------------------- 1 | ori $1,12 2 | ori $2,2 3 | mult $1,$2 4 | mflo $2 5 | add $3,$1,$2 6 | mflo $1 7 | mult $1,$2 8 | add $2,$2,$3 9 | ori $4,$0,14 10 | mflo $1 11 | div $1,$2 12 | mflo $4 13 | mfhi $5 14 | lui $1,0xffff 15 | ori $1,0xffff 16 | addu $2,$1,$0 17 | mult $2,$1 18 | mflo $3 19 | mfhi $4 20 | multu $1,$2 21 | mflo $5 22 | mfhi $6 23 | -------------------------------------------------------------------------------- /P6/测试代码/fzq/测试.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/fzq/测试.zip -------------------------------------------------------------------------------- /P6/测试代码/jalr.asm: -------------------------------------------------------------------------------- 1 | ori $t2,0x3008 2 | jalr $t1,$t2 3 | nop -------------------------------------------------------------------------------- /P6/测试代码/jalr.txt: -------------------------------------------------------------------------------- 1 | 354a3008 2 | 01404809 3 | 00000000 4 | -------------------------------------------------------------------------------- /P6/测试代码/p6_test/p6_test_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/p6_test/p6_test_3.asm -------------------------------------------------------------------------------- /P6/测试代码/p6_test/p6_test_out.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/p6_test/p6_test_out.xlsx -------------------------------------------------------------------------------- /P6/测试代码/p6_test_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/p6_test_3.asm -------------------------------------------------------------------------------- /P6/测试代码/qr/multdivtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/qr/multdivtest.txt -------------------------------------------------------------------------------- /P6/测试代码/zxm/testcal_ians.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/zxm/testcal_ians.docx -------------------------------------------------------------------------------- /P6/测试代码/zxm/testcal_r2ans.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/zxm/testcal_r2ans.docx -------------------------------------------------------------------------------- /P6/测试代码/zxm/testloadans.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/zxm/testloadans.docx -------------------------------------------------------------------------------- /P6/测试代码/zxm/teststoreans.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/测试代码/zxm/teststoreans.docx -------------------------------------------------------------------------------- /P6/英文指令集.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P6/英文指令集.pdf -------------------------------------------------------------------------------- /P7/COCO定时器设计规范-1.0.0.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/COCO定时器设计规范-1.0.0.4.pdf -------------------------------------------------------------------------------- /P7/L17-1-IO接口.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/L17-1-IO接口.pdf -------------------------------------------------------------------------------- /P7/L17-2-支持IO-2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/L17-2-支持IO-2017.pdf -------------------------------------------------------------------------------- /P7/L17-3-MIPS系统结构-V3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/L17-3-MIPS系统结构-V3.pdf -------------------------------------------------------------------------------- /P7/P7设计文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/P7设计文档.pdf -------------------------------------------------------------------------------- /P7/See_MIPS_Run_Linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/See_MIPS_Run_Linux.pdf -------------------------------------------------------------------------------- /P7/mips1.asm: -------------------------------------------------------------------------------- 1 | ori $t0, $t0, 0x1001 2 | lui $at, 0x7fff 3 | ori $at, $at, 0xffff 4 | or $t3, $0, $at 5 | mtc0 $t0, $t4 6 | mult $t0, $t0 7 | ori $s2, $s2, 0x3000 8 | jalr $ra, $0 9 | mflo $t5 10 | mfc0 $t9, $t5 -------------------------------------------------------------------------------- /P7/中文指令集.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/中文指令集.pdf -------------------------------------------------------------------------------- /P7/测试程序/BUAA-CO-Killer-master/co_killer/__init__.py: -------------------------------------------------------------------------------- 1 | from .tester import tester 2 | 3 | -------------------------------------------------------------------------------- /P7/测试程序/BUAA-CO-Killer-master/co_killer/builtin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /P7/测试程序/BUAA-CO-Killer-master/co_killer/compilable/__init__.py: -------------------------------------------------------------------------------- 1 | from .compilable import Compilable, BlankLine, Label, Comment 2 | from .instruction import Instruction 3 | from .template import Template, RandomKTemplate, ExcHandlerTemplate 4 | -------------------------------------------------------------------------------- /P7/测试程序/BUAA-CO-Killer-master/co_killer/global_configs.py: -------------------------------------------------------------------------------- 1 | import os 2 | BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -------------------------------------------------------------------------------- /P7/测试程序/BUAA-CO-Killer-master/co_killer/util/__init__.py: -------------------------------------------------------------------------------- 1 | from .placeholder import Placeholder 2 | -------------------------------------------------------------------------------- /P7/测试程序/P7 CPU.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7 CPU.zip -------------------------------------------------------------------------------- /P7/测试程序/P7_L0_delay.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7_L0_delay.zip -------------------------------------------------------------------------------- /P7/测试程序/P7_L0_exception.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7_L0_exception.zip -------------------------------------------------------------------------------- /P7/测试程序/P7_L0_interrupt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7_L0_interrupt.zip -------------------------------------------------------------------------------- /P7/测试程序/P7_L0_weak.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7_L0_weak.zip -------------------------------------------------------------------------------- /P7/测试程序/P7_课上测试.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/P7_课上测试.zip -------------------------------------------------------------------------------- /P7/测试程序/Test_YSP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/Test_YSP.zip -------------------------------------------------------------------------------- /P7/测试程序/exception_handler.asm: -------------------------------------------------------------------------------- 1 | .ktext 0x4180 2 | mfc0 $s0,$14 3 | add $s0,$s0,4 4 | mtc0 $s0,$14 5 | end: eret 6 | 7 | -------------------------------------------------------------------------------- /P7/测试程序/main_exception.asm: -------------------------------------------------------------------------------- 1 | ori $s0,0x7F10 2 | ori $t1,10 3 | sw $t1,4($s0) #preset = 10 4 | ori $t2,9 5 | sw $t2,0($s0) #ctrl[3:0] = 1001 6 | ori $t3,0xfa01 #IM[7:2]=6'b111111, EXL=0, IE=1 7 | mtc0 $t3,$12 #write to SR 8 | nop 9 | nop 10 | nop 11 | jal loop 12 | nop 13 | loop: jr $ra 14 | nop 15 | 16 | 17 | -------------------------------------------------------------------------------- /P7/测试程序/mips1.asm: -------------------------------------------------------------------------------- 1 | lui $t1,0xffff 2 | add $t2,$t1,$t1 -------------------------------------------------------------------------------- /P7/测试程序/qr/exception.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/exception.s -------------------------------------------------------------------------------- /P7/测试程序/qr/test1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test1.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test2.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test2_exception.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test2_exception.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test3.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test3_exception.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test3_exception.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test4_interrupt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test4_interrupt.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test4_interrupt_handler.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test4_interrupt_handler.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test5_exception.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test5_exception.asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test7_handler(1).asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test7_handler(1).asm -------------------------------------------------------------------------------- /P7/测试程序/qr/test7_interrupt(1).asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/test7_interrupt(1).asm -------------------------------------------------------------------------------- /P7/测试程序/qr/新建 Microsoft Office Excel 工作表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/qr/新建 Microsoft Office Excel 工作表.xlsx -------------------------------------------------------------------------------- /P7/测试程序/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/readme.pdf -------------------------------------------------------------------------------- /P7/测试程序/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test.zip -------------------------------------------------------------------------------- /P7/测试程序/test/OV.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/OV.zip -------------------------------------------------------------------------------- /P7/测试程序/test/OV/handdle_ov.asm: -------------------------------------------------------------------------------- 1 | .text 2 | ori $26,$0,0 3 | ori $27,$0,0 4 | eret 5 | -------------------------------------------------------------------------------- /P7/测试程序/test/OV/handdle_ov.txt: -------------------------------------------------------------------------------- 1 | 341a0000 2 | 341b0000 3 | 42000018 4 | -------------------------------------------------------------------------------- /P7/测试程序/test/OV/p7_test_ov.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/OV/p7_test_ov.asm -------------------------------------------------------------------------------- /P7/测试程序/test/RI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/RI.zip -------------------------------------------------------------------------------- /P7/测试程序/test/RI/exc.txt: -------------------------------------------------------------------------------- 1 | 37180028 2 | 40196800 3 | 13190004 4 | 00000000 5 | 3c188000 6 | 37180028 7 | 13190005 8 | 34180004 9 | 40197000 10 | 0338c820 11 | 40997000 12 | 42000018 13 | 34180008 14 | 40197000 15 | 0338c820 16 | 40997000 17 | 42000018 -------------------------------------------------------------------------------- /P7/测试程序/test/RI/p7_handlle_RI.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/RI/p7_handlle_RI.asm -------------------------------------------------------------------------------- /P7/测试程序/test/RI/p7_test_RI.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/RI/p7_test_RI.asm -------------------------------------------------------------------------------- /P7/测试程序/test/UNQI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/UNQI.zip -------------------------------------------------------------------------------- /P7/测试程序/test/UNQI/exc.txt: -------------------------------------------------------------------------------- 1 | 40196800 2 | 341a0010 3 | 133a000e 4 | 00000000 5 | 341a0014 6 | 1359000b 7 | 00000000 8 | 3c1a8000 9 | 375a0010 10 | 133a000c 11 | 00000000 12 | 3c1a8000 13 | 375a0014 14 | 133a0008 15 | 00000000 16 | 3c010001 17 | 08000c1b 18 | 341a0004 19 | 40197000 20 | 033ac820 21 | 40997000 22 | 42000018 23 | 341a0008 24 | 40197000 25 | 033ac820 26 | 40997000 27 | 42000018 28 | -------------------------------------------------------------------------------- /P7/测试程序/test/UNQI/p7_handdle_unqi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/test/UNQI/p7_handdle_unqi.asm -------------------------------------------------------------------------------- /P7/测试程序/test7/mips1.asm: -------------------------------------------------------------------------------- 1 | .text 2 | ori $t0,$0,3 3 | sw $t0,0x7F14($0) 4 | ori $t0,$0,0x0009 #mode 0 5 | sw $t0,0x7F10($0) 6 | nop 7 | nop 8 | nop 9 | nop 10 | nop 11 | 12 | end: 13 | j end 14 | nop 15 | 16 | .ktext 0x4180 17 | ori $k0,$0,3 18 | sw $k0,0x7F14($0) 19 | ori $k0,$0,0x0009 #mode 0 20 | sw $k0,0x7F10($0) 21 | 22 | eret 23 | -------------------------------------------------------------------------------- /P7/测试程序/山寨强测 by hansbug/readme.txt: -------------------------------------------------------------------------------- 1 | 1、本测试集运行时间普遍较长,在mars上请耐心等待,在ise上请把模拟时间调到10000以上 2 | 2、本测试集仅使用$0-$5、$25寄存器,为了大幅提高数据冒险发生概率 3 | 3、本测试集为了测试方便考虑,不包含跳转类指令。如果需要测试请自行构造小数据测试(注意延迟槽的情况处理) 4 | 4、本测试集为了测试方便考虑,不包含硬件中断。如果需要测试请自行构造小数据测试(理论上异常测试强测没啥问题的话硬件中断问题不会很大,注意几个特例就ok) -------------------------------------------------------------------------------- /P7/测试程序/山寨强测 by hansbug/强测,含异常,异常处理有操作/gethandler.bat: -------------------------------------------------------------------------------- 1 | java -jar F:\\ProgrammingProjects\\MIPS\\P7\\Mars4_5.jar a db mc CompactDataAtZero dump 0x00004180-0x00004400 HexText code_handler.txt 1.asm -------------------------------------------------------------------------------- /P7/测试程序/山寨强测 by hansbug/强测,含异常,异常处理有操作,主程序含mtc0 mfc0/gethandler.bat: -------------------------------------------------------------------------------- 1 | java -jar F:\\ProgrammingProjects\\MIPS\\P7\\Mars4_5.jar a db mc CompactDataAtZero dump 0x00004180-0x00004400 HexText code_handler.txt 1.asm -------------------------------------------------------------------------------- /P7/测试程序/山寨强测 by hansbug/强测,含异常,异常处理有操作,主程序含mtc0 mfc0/新建文本文档.txt: -------------------------------------------------------------------------------- 1 | 0410 2 | 0010 3 | 4 | 0000 0100 0001 0000 5 | 0000 0000 0001 0000 -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase1/code1.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0f00 3 | 40806000 4 | 34080008 5 | 3409000c 6 | 8d0a0001 7 | 8d0a0002 8 | 8d0a0003 9 | 8d0a0004 10 | 8d2affff 11 | 8d2afffe 12 | 8d2afffd 13 | 8d2afffc 14 | 850a0001 15 | 850a0002 16 | 850a0003 17 | 850a0004 18 | 852affff 19 | 852afffe 20 | 852afffd 21 | 852afffc 22 | 950a0001 23 | 950a0002 24 | 950a0003 25 | 950a0004 26 | 952affff 27 | 952afffe 28 | 952afffd 29 | 952afffc 30 | 08000c1d 31 | 00000000 32 | -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase1/handle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/课上/testcase1/handle.asm -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase1/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/课上/testcase1/main.asm -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase10/handle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/课上/testcase10/handle.asm -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase2/code2.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0f00 3 | 40806000 4 | 34080008 5 | 3409000c 6 | ad0a0001 7 | ad0a0002 8 | ad0a0003 9 | ad0a0004 10 | ad2affff 11 | ad2afffe 12 | ad2afffd 13 | ad2afffc 14 | a50a0001 15 | a50a0002 16 | a50a0003 17 | a50a0004 18 | a52affff 19 | a52afffe 20 | a52afffd 21 | a52afffc 22 | 08000c15 23 | 00000000 24 | -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase3/code.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0f00 3 | 40806000 4 | 08000c05 5 | 8c000001 6 | 08000c07 7 | ac000001 8 | 3c087fff 9 | 3508ffff 10 | 08000c0b 11 | 210a0001 12 | 08000c0b 13 | 00000000 14 | -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase5/handle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/课上/testcase5/handle.asm -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase6/code.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0f00 3 | 40806000 4 | 3c087fff 5 | 3508ffff 6 | 3c098000 7 | 35290000 8 | 8d0a0001 9 | 850a0001 10 | 950a0001 11 | 810a0001 12 | 910a0001 13 | 8d2affff 14 | 852affff 15 | 952affff 16 | 812affff 17 | 912affff 18 | ad0a0001 19 | a50a0001 20 | a10a0001 21 | ad2affff 22 | a52affff 23 | a12affff 24 | 08000c17 25 | 00000000 26 | -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase7/code.txt: -------------------------------------------------------------------------------- 1 | 341c0000 2 | 341d0f00 3 | 40806000 4 | 3c087fff 5 | 3508ffff 6 | 3c098000 7 | 35290000 8 | 354a0001 9 | 3c0bffff 10 | 356bffff 11 | 01486020 12 | 01696020 13 | 210c0001 14 | 212cffff 15 | 010b6022 16 | 012a6022 17 | 08000c10 18 | 00000000 19 | -------------------------------------------------------------------------------- /P7/测试程序/课上/testcase9/handle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/测试程序/课上/testcase9/handle.asm -------------------------------------------------------------------------------- /P7/计时器说明文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/P7/计时器说明文档.pdf -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | ### 北航计组2019 2 | 3 | p0~p6代码及测试数据、自动测试程序等 4 | 5 | (p6文件夹内有惊喜) 6 | 7 | 最终没有过p7,因而p7文件夹里只有测试数据没有代码 8 | 9 | 包括回忆版的上机题目,其中指令来自MIPS英文指令集或自编 10 | 11 | 部分测试程序、数据来自Github或学长 12 | 13 | **用作参考,请勿抄袭!** 14 | 15 | Have fun:) 16 | -------------------------------------------------------------------------------- /理论课复习.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/Computer-Organization/b0d92f411b908891d720bb1c5fc71eec8759af8d/理论课复习.docx -------------------------------------------------------------------------------- /题目(回忆).txt: -------------------------------------------------------------------------------- 1 | (第一题必做,后两题完成一个即可通过) 2 | P0 3 | 有限状态机(售货机) 4 | 逻辑左移 5 | 浮点数 6 | P1 7 | 不用><比较四位数大小 8 | 有限状态机(售货机) 9 | 有限状态机 10 | P2 11 | 斐波那契(可循环代替递归) 12 | 汉诺塔(提供C代码,翻译即可) 13 | forgotten 14 | P3 15 | jal 16 | clo(用bitfinder) 17 | forgotten(要交换DM两个接口位置) 18 | P4 19 | jalr 20 | rotrv 21 | lwl 22 | P5 23 | bgezalr 24 | clz 25 | lwpl 26 | P6 27 | bgezalc 28 | madd 29 | lwso 30 | P7 31 | 现场强测 --------------------------------------------------------------------------------