实例介绍
自己动手写CPU配套源码
【实例截图】
【核心代码】
c2568fbe-cc97-47aa-b048-1cb31488940b
└── 自己动手写CPU
├── Code
│ ├── Chapter10
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── cp0_reg.v
│ │ ├── cp0_reg.vPreview
│ │ ├── ctrl.v
│ │ ├── data_ram.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── LLbit_reg.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter11
│ │ ├── AsmTest
│ │ │ ├── test1
│ │ │ │ ├── Bin2Mem.exe
│ │ │ │ ├── inst_rom.asm
│ │ │ │ ├── inst_rom.bin
│ │ │ │ ├── inst_rom.data
│ │ │ │ ├── inst_rom.o
│ │ │ │ ├── inst_rom.om
│ │ │ │ ├── inst_rom.S
│ │ │ │ ├── Makefile
│ │ │ │ └── ram.ld
│ │ │ ├── test2
│ │ │ │ ├── Bin2Mem.exe
│ │ │ │ ├── inst_rom.asm
│ │ │ │ ├── inst_rom.bin
│ │ │ │ ├── inst_rom.data
│ │ │ │ ├── inst_rom.o
│ │ │ │ ├── inst_rom.om
│ │ │ │ ├── inst_rom.S
│ │ │ │ ├── inst_rom.S~
│ │ │ │ ├── Makefile
│ │ │ │ └── ram.ld
│ │ │ └── test3
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── cp0_reg.v
│ │ ├── ctrl.v
│ │ ├── data_ram.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── LLbit_reg.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter12
│ │ ├── cp0_reg.v
│ │ ├── ctrl.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── LLbit_reg.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wishbone_bus_if.v
│ ├── Chapter13
│ │ ├── flash
│ │ │ └── wb_flash.v
│ │ ├── gpio
│ │ │ ├── gpio_defines.v
│ │ │ └── gpio_top.v
│ │ ├── OpenMIPS
│ │ │ ├── cp0_reg.v
│ │ │ ├── ctrl.v
│ │ │ ├── defines.v
│ │ │ ├── div.v
│ │ │ ├── ex_mem.v
│ │ │ ├── ex.v
│ │ │ ├── hilo_reg.v
│ │ │ ├── id_ex.v
│ │ │ ├── id.v
│ │ │ ├── if_id.v
│ │ │ ├── LLbit_reg.v
│ │ │ ├── mem.v
│ │ │ ├── mem.v.bak
│ │ │ ├── mem_wb.v
│ │ │ ├── openmips.v
│ │ │ ├── pc_reg.v
│ │ │ ├── regfile.v
│ │ │ └── wishbone_bus_if.v
│ │ ├── openmips_min_sopc.v
│ │ ├── sdram_controller
│ │ │ ├── async_fifo.v
│ │ │ ├── sdrc_bank_ctl.v
│ │ │ ├── sdrc_bank_fsm.v
│ │ │ ├── sdrc_bs_convert.v
│ │ │ ├── sdrc_core.v
│ │ │ ├── sdrc_define.v
│ │ │ ├── sdrc_req_gen.v
│ │ │ ├── sdrc_top.v
│ │ │ ├── sdrc_xfr_ctl.v
│ │ │ ├── sync_fifo.v
│ │ │ └── wb2sdrc.v
│ │ ├── uart
│ │ │ ├── raminfr.v
│ │ │ ├── timescale.v
│ │ │ ├── uart_debug_if.v
│ │ │ ├── uart_defines.v
│ │ │ ├── uart_receiver.v
│ │ │ ├── uart_regs.v
│ │ │ ├── uart_rfifo.v
│ │ │ ├── uart_sync_flops.v
│ │ │ ├── uart_tfifo.v
│ │ │ ├── uart_top.v
│ │ │ ├── uart_transmitter.v
│ │ │ └── uart_wb.v
│ │ └── wb_conmax
│ │ ├── wb_conmax_arb.v
│ │ ├── wb_conmax_defines.v
│ │ ├── wb_conmax_master_if.v
│ │ ├── wb_conmax_msel.v
│ │ ├── wb_conmax_pri_dec.v
│ │ ├── wb_conmax_pri_enc.v
│ │ ├── wb_conmax_rf.v
│ │ ├── wb_conmax_slave_if.v
│ │ └── wb_conmax_top.v
│ ├── Chapter14
│ │ ├── BinMerge.exe
│ │ ├── bootloader
│ │ │ ├── BootLoader.asm
│ │ │ ├── BootLoader.bin
│ │ │ ├── BootLoader.o
│ │ │ ├── BootLoader.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── gpio_test
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── openmips_min_sopc
│ │ │ ├── async_fifo.v
│ │ │ ├── cp0_reg.v
│ │ │ ├── ctrl.v
│ │ │ ├── db
│ │ │ │ ├── altsyncram_c5c1.tdf
│ │ │ │ ├── logic_util_heursitic.dat
│ │ │ │ ├── mult_l8t.tdf
│ │ │ │ ├── openmips_min_sopc.(0).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(0).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(10).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(10).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(11).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(11).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(12).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(12).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(13).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(13).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(14).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(14).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(15).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(15).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(16).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(16).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(17).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(17).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(18).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(18).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(19).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(19).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(1).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(1).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(20).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(20).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(21).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(21).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(22).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(22).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(23).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(23).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(24).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(24).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(25).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(25).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(26).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(26).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(27).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(27).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(28).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(28).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(29).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(29).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(2).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(2).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(30).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(30).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(31).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(31).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(32).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(32).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(33).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(33).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(34).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(34).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(35).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(35).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(36).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(36).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(37).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(37).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(38).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(38).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(39).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(39).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(3).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(3).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(40).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(40).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(41).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(41).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(42).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(42).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(43).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(43).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(44).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(44).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(45).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(45).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(46).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(46).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(47).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(47).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(48).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(48).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(49).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(49).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(4).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(4).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(50).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(50).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(51).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(51).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(5).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(5).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(6).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(6).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(7).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(7).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(8).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(8).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.(9).cnf.cdb
│ │ │ │ ├── openmips_min_sopc.(9).cnf.hdb
│ │ │ │ ├── openmips_min_sopc.amm.cdb
│ │ │ │ ├── openmips_min_sopc.asm_labs.ddb
│ │ │ │ ├── openmips_min_sopc.asm.qmsg
│ │ │ │ ├── openmips_min_sopc.asm.rdb
│ │ │ │ ├── openmips_min_sopc.cbx.xml
│ │ │ │ ├── openmips_min_sopc.cmp0.ddb
│ │ │ │ ├── openmips_min_sopc.cmp1.ddb
│ │ │ │ ├── openmips_min_sopc.cmp.bpm
│ │ │ │ ├── openmips_min_sopc.cmp.cdb
│ │ │ │ ├── openmips_min_sopc.cmp.hdb
│ │ │ │ ├── openmips_min_sopc.cmp.kpt
│ │ │ │ ├── openmips_min_sopc.cmp.logdb
│ │ │ │ ├── openmips_min_sopc.cmp_merge.kpt
│ │ │ │ ├── openmips_min_sopc.cmp.rdb
│ │ │ │ ├── openmips_min_sopc.db_info
│ │ │ │ ├── openmips_min_sopc.fit.qmsg
│ │ │ │ ├── openmips_min_sopc.hier_info
│ │ │ │ ├── openmips_min_sopc.hif
│ │ │ │ ├── openmips_min_sopc.idb.cdb
│ │ │ │ ├── openmips_min_sopc.lpc.html
│ │ │ │ ├── openmips_min_sopc.lpc.rdb
│ │ │ │ ├── openmips_min_sopc.lpc.txt
│ │ │ │ ├── openmips_min_sopc.map_bb.cdb
│ │ │ │ ├── openmips_min_sopc.map_bb.hdb
│ │ │ │ ├── openmips_min_sopc.map_bb.logdb
│ │ │ │ ├── openmips_min_sopc.map.bpm
│ │ │ │ ├── openmips_min_sopc.map.cdb
│ │ │ │ ├── openmips_min_sopc.map.hdb
│ │ │ │ ├── openmips_min_sopc.map.kpt
│ │ │ │ ├── openmips_min_sopc.map.logdb
│ │ │ │ ├── openmips_min_sopc.map.qmsg
│ │ │ │ ├── openmips_min_sopc.pre_map.cdb
│ │ │ │ ├── openmips_min_sopc.pre_map.hdb
│ │ │ │ ├── openmips_min_sopc.rtlv.hdb
│ │ │ │ ├── openmips_min_sopc.rtlv_sg.cdb
│ │ │ │ ├── openmips_min_sopc.rtlv_sg_swap.cdb
│ │ │ │ ├── openmips_min_sopc.sgdiff.cdb
│ │ │ │ ├── openmips_min_sopc.sgdiff.hdb
│ │ │ │ ├── openmips_min_sopc.sld_design_entry_dsc.sci
│ │ │ │ ├── openmips_min_sopc.sld_design_entry.sci
│ │ │ │ ├── openmips_min_sopc.smart_action.txt
│ │ │ │ ├── openmips_min_sopc.smp_dump.txt
│ │ │ │ ├── openmips_min_sopc.sta_cmp.6_slow.tdb
│ │ │ │ ├── openmips_min_sopc.sta.qmsg
│ │ │ │ ├── openmips_min_sopc.sta.rdb
│ │ │ │ ├── openmips_min_sopc.syn_hier_info
│ │ │ │ └── openmips_min_sopc.tis_db_list.ddb
│ │ │ ├── defines.v
│ │ │ ├── div.v
│ │ │ ├── ex_mem.v
│ │ │ ├── ex.v
│ │ │ ├── gpio_defines.v
│ │ │ ├── gpio_top.v
│ │ │ ├── hilo_reg.v
│ │ │ ├── id_ex.v
│ │ │ ├── id.v
│ │ │ ├── if_id.v
│ │ │ ├── incremental_db
│ │ │ │ ├── compiled_partitions
│ │ │ │ │ ├── openmips_min_sopc.db_info
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.cbp
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.cdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.dfp
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.hdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.kpt
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.logdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.rcfdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.cmp.re.rcfdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.map.cbp
│ │ │ │ │ ├── openmips_min_sopc.root_partition.map.cdb
│ │ │ │ │ ├── openmips_min_sopc.root_partition.map.dpi
│ │ │ │ │ ├── openmips_min_sopc.root_partition.map.hdb
│ │ │ │ │ └── openmips_min_sopc.root_partition.map.kpt
│ │ │ │ └── README
│ │ │ ├── LLbit_reg.v
│ │ │ ├── mem.v
│ │ │ ├── mem.v.bak
│ │ │ ├── mem_wb.v
│ │ │ ├── openmips_min_sopc.asm.rpt
│ │ │ ├── openmips_min_sopc.done
│ │ │ ├── openmips_min_sopc.dpf
│ │ │ ├── openmips_min_sopc.fit.rpt
│ │ │ ├── openmips_min_sopc.fit.smsg
│ │ │ ├── openmips_min_sopc.fit.summary
│ │ │ ├── openmips_min_sopc.flow.rpt
│ │ │ ├── openmips_min_sopc.map.rpt
│ │ │ ├── openmips_min_sopc.map.smsg
│ │ │ ├── openmips_min_sopc.map.summary
│ │ │ ├── openmips_min_sopc.pin
│ │ │ ├── openmips_min_sopc.pof
│ │ │ ├── openmips_min_sopc.qpf
│ │ │ ├── openmips_min_sopc.qsf
│ │ │ ├── openmips_min_sopc.sof
│ │ │ ├── openmips_min_sopc.sta.rpt
│ │ │ ├── openmips_min_sopc.sta.summary
│ │ │ ├── openmips_min_sopc.v
│ │ │ ├── openmips.v
│ │ │ ├── OS.bin
│ │ │ ├── pc_reg.v
│ │ │ ├── raminfr.v
│ │ │ ├── regfile.v
│ │ │ ├── sdrc_bank_ctl.v
│ │ │ ├── sdrc_bank_fsm.v
│ │ │ ├── sdrc_bs_convert.v
│ │ │ ├── sdrc_core.v
│ │ │ ├── sdrc_define.v
│ │ │ ├── sdrc_req_gen.v
│ │ │ ├── sdrc_top.v
│ │ │ ├── sdrc_xfr_ctl.v
│ │ │ ├── sync_fifo.v
│ │ │ ├── timescale.v
│ │ │ ├── uart_debug_if.v
│ │ │ ├── uart_defines.v
│ │ │ ├── uart_receiver.v
│ │ │ ├── uart_regs.v
│ │ │ ├── uart_rfifo.v
│ │ │ ├── uart_sync_flops.v
│ │ │ ├── uart_tfifo.v
│ │ │ ├── uart_top.v
│ │ │ ├── uart_transmitter.v
│ │ │ ├── uart_wb.v
│ │ │ ├── wb2sdrc.v
│ │ │ ├── wb_conmax_arb.v
│ │ │ ├── wb_conmax_defines.v
│ │ │ ├── wb_conmax_master_if.v
│ │ │ ├── wb_conmax_msel.v
│ │ │ ├── wb_conmax_pri_dec.v
│ │ │ ├── wb_conmax_pri_enc.v
│ │ │ ├── wb_conmax_rf.v
│ │ │ ├── wb_conmax_slave_if.v
│ │ │ ├── wb_conmax_top.v
│ │ │ ├── wb_flash.v
│ │ │ └── wishbone_bus_if.v
│ │ ├── simpleos
│ │ │ ├── BinMerge.exe
│ │ │ ├── BootLoader.bin
│ │ │ ├── Image.bin
│ │ │ ├── Makefile
│ │ │ ├── ram.ld
│ │ │ ├── SimpleOS.asm
│ │ │ ├── SimpleOS.bin
│ │ │ ├── SimpleOS.o
│ │ │ ├── SimpleOS.om
│ │ │ └── SimpleOS.S
│ │ └── uart_test
│ │ ├── Bin2Mem.exe
│ │ ├── Bin2Mif.exe
│ │ ├── inst_rom.asm
│ │ ├── inst_rom.bin
│ │ ├── inst_rom.data
│ │ ├── inst_rom.o
│ │ ├── inst_rom.om
│ │ ├── inst_rom.S
│ │ ├── Makefile
│ │ └── ram.ld
│ ├── Chapter15
│ │ └── ucosii_OpenMIPS
│ │ ├── BinMerge
│ │ │ ├── BinMerge.exe
│ │ │ ├── BootLoader.bin
│ │ │ └── OSImage.bin
│ │ ├── BinMerge.exe
│ │ ├── BootLoader.bin
│ │ ├── common
│ │ │ ├── common.o
│ │ │ ├── Makefile
│ │ │ ├── openmips.c
│ │ │ ├── openmips.c~
│ │ │ └── openmips.o
│ │ ├── config.mk
│ │ ├── include
│ │ │ ├── app_cfg.h
│ │ │ ├── cpu.h
│ │ │ ├── includes.h
│ │ │ ├── openmips.h
│ │ │ ├── os_cfg.h
│ │ │ ├── os_cpu.h
│ │ │ └── ucos_ii.h
│ │ ├── Makefile
│ │ ├── OS.bin
│ │ ├── port
│ │ │ ├── cpu_a.s
│ │ │ ├── Makefile
│ │ │ ├── os_cpu_a.o
│ │ │ ├── os_cpu_a.S
│ │ │ ├── os_cpu_c.c
│ │ │ ├── os_cpu_c.c~
│ │ │ ├── os_cpu_c.o
│ │ │ └── port.o
│ │ ├── ram.ld
│ │ ├── ucos
│ │ │ ├── Makefile
│ │ │ ├── os_cfg_r.h
│ │ │ ├── os_core.c
│ │ │ ├── os_core.o
│ │ │ ├── os_dbg_r.c
│ │ │ ├── os_dbg_r.o
│ │ │ ├── os_flag.c
│ │ │ ├── os_flag.o
│ │ │ ├── os_mbox.c
│ │ │ ├── os_mbox.o
│ │ │ ├── os_mem.c
│ │ │ ├── os_mem.o
│ │ │ ├── os_mutex.c
│ │ │ ├── os_mutex.o
│ │ │ ├── os_q.c
│ │ │ ├── os_q.o
│ │ │ ├── os_sem.c
│ │ │ ├── os_sem.o
│ │ │ ├── os_task.c
│ │ │ ├── os_task.o
│ │ │ ├── os_time.c
│ │ │ ├── os_time.o
│ │ │ ├── os_tmr.c
│ │ │ ├── os_tmr.o
│ │ │ ├── ucos_ii.c
│ │ │ ├── ucos_ii.h
│ │ │ └── ucos.o
│ │ ├── ucosii.asm
│ │ ├── ucosii.bin
│ │ ├── ucosii.om
│ │ └── 说明.txt
│ ├── Chapter2
│ │ ├── inst_fetch_tb.v
│ │ ├── inst_fetch.v
│ │ ├── pc_reg.v
│ │ ├── rom.data
│ │ └── rom.v
│ ├── Chapter4
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ ├── wave1.do
│ │ └── wave.do
│ ├── Chapter5_1
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter5_2
│ │ ├── AsmTest
│ │ │ ├── LogicInstTest
│ │ │ │ ├── Bin2Mem.exe
│ │ │ │ ├── inst_rom.asm
│ │ │ │ ├── inst_rom.bin
│ │ │ │ ├── inst_rom.data
│ │ │ │ ├── inst_rom.o
│ │ │ │ ├── inst_rom.om
│ │ │ │ ├── inst_rom.S
│ │ │ │ ├── Makefile
│ │ │ │ └── ram.ld
│ │ │ └── ShiftInstTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter6
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter7_1
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter7_2
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── defines.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter8
│ │ ├── AsmTest
│ │ │ ├── Test1
│ │ │ │ ├── Bin2Mem.exe
│ │ │ │ ├── inst_rom.asm
│ │ │ │ ├── inst_rom.bin
│ │ │ │ ├── inst_rom.data
│ │ │ │ ├── inst_rom.o
│ │ │ │ ├── inst_rom.om
│ │ │ │ ├── inst_rom.S
│ │ │ │ ├── inst_rom.S~
│ │ │ │ ├── Makefile
│ │ │ │ └── ram.ld
│ │ │ └── Test2
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter9_1
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── data_ram.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter9_2
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── data_ram.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── LLbit_reg.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chapter9_3
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── data_ram.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── LLbit_reg.v
│ │ ├── mem.v
│ │ ├── mem.v.bak
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ ├── Chpater7_3
│ │ ├── AsmTest
│ │ │ ├── Bin2Mem.exe
│ │ │ ├── inst_rom.asm
│ │ │ ├── inst_rom.bin
│ │ │ ├── inst_rom.data
│ │ │ ├── inst_rom.o
│ │ │ ├── inst_rom.om
│ │ │ ├── inst_rom.S
│ │ │ ├── inst_rom.S~
│ │ │ ├── Makefile
│ │ │ └── ram.ld
│ │ ├── ctrl.v
│ │ ├── defines.v
│ │ ├── div.v
│ │ ├── ex_mem.v
│ │ ├── ex.v
│ │ ├── hilo_reg.v
│ │ ├── id_ex.v
│ │ ├── id.v
│ │ ├── if_id.v
│ │ ├── inst_rom.data
│ │ ├── inst_rom.v
│ │ ├── mem.v
│ │ ├── mem_wb.v
│ │ ├── openmips_min_sopc_tb.v
│ │ ├── openmips_min_sopc.v
│ │ ├── openmips.v
│ │ ├── pc_reg.v
│ │ ├── regfile.v
│ │ └── wave.do
│ └── ucosii_sourcecode
│ ├── Micrium
│ │ └── Software
│ │ └── uCOS-II
│ │ ├── Doc
│ │ │ ├── QuickRefChart-Color.PDF
│ │ │ ├── QuickRefChart-Color.XLS
│ │ │ ├── README.TXT
│ │ │ ├── ReleaseNotes.PDF
│ │ │ ├── TaskAssignmentWorksheet.PDF
│ │ │ ├── TaskAssignmentWorksheet.XLS
│ │ │ ├── uCOS-II-CfgMan.PDF
│ │ │ ├── uCOS-II-RAM-Calc.XLS
│ │ │ ├── uCOS-II-RefMan.PDF
│ │ │ └── WhatsNewSince-V200.PDF
│ │ └── Source
│ │ ├── os_cfg_r.h
│ │ ├── os_core.c
│ │ ├── os_dbg_r.c
│ │ ├── os_flag.c
│ │ ├── os_mbox.c
│ │ ├── os_mem.c
│ │ ├── os_mutex.c
│ │ ├── os_q.c
│ │ ├── os_sem.c
│ │ ├── os_task.c
│ │ ├── os_time.c
│ │ ├── os_tmr.c
│ │ ├── ucos_ii.c
│ │ └── ucos_ii.h
│ ├── uCOS-II_M14K.zip
│ └── uCOS-II-V290.ZIP
├── DE2
│ ├── DE2_Control_Panel.exe
│ ├── DE2_USB_API.pof
│ ├── DE2_USB_API.sof
│ ├── FTD2XX.DLL
│ ├── Image_Convert_English.pdf
│ ├── ImgConv.exe
│ └── mem.bin
├── Doc
│ ├── A3V64S40ETP_v1.0_Zentel.pdf
│ ├── DE2_UserManuall.pdf
│ ├── gpio_spec.pdf
│ ├── S29AL032D_00_A5_E.pdf
│ ├── sdram_controller_specs.pdf
│ └── UART_spec.pdf
├── openmips模块连接关系图.vsd
└── readme.doc
68 directories, 867 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论