实例介绍
裸奔ZYNQ7010,使用例程打印Helloworld,主要使用PL端的EMIO,将其映射到PS的串口1上,不停打印Helloworld。约束文件定义的EMIO为T19,R19
【实例截图】
【核心代码】
ZYNQ的EMIO串口使用
└── project_6
├── Packages
├── project_6.cache
│ └── wt
│ ├── gui_resources.wdf
│ ├── java_command_handlers.wdf
│ ├── project.wpc
│ ├── synthesis_details.wdf
│ ├── synthesis.wdf
│ └── webtalk_pa.xml
├── project_6.hw
│ └── project_6.lpr
├── project_6.ip_user_files
│ ├── bd
│ │ └── design_1
│ │ ├── hdl
│ │ │ └── design_1.v
│ │ └── ip
│ │ └── design_1_processing_system7_0_0
│ │ └── sim
│ │ └── design_1_processing_system7_0_0.v
│ ├── mem_init_files
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ └── ps7_init.tcl
│ ├── README.txt
│ └── sim_scripts
│ └── design_1
│ ├── activehdl
│ │ ├── compile.do
│ │ ├── design_1.sh
│ │ ├── design_1.udo
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ ├── simulate.do
│ │ └── wave.do
│ ├── ies
│ │ ├── design_1.sh
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ └── run.f
│ ├── modelsim
│ │ ├── compile.do
│ │ ├── design_1.sh
│ │ ├── design_1.udo
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ ├── simulate.do
│ │ └── wave.do
│ ├── questa
│ │ ├── compile.do
│ │ ├── design_1.sh
│ │ ├── design_1.udo
│ │ ├── elaborate.do
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ ├── simulate.do
│ │ └── wave.do
│ ├── README.txt
│ ├── riviera
│ │ ├── compile.do
│ │ ├── design_1.sh
│ │ ├── design_1.udo
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ ├── simulate.do
│ │ └── wave.do
│ ├── vcs
│ │ ├── design_1.sh
│ │ ├── file_info.txt
│ │ ├── glbl.v
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── README.txt
│ │ └── simulate.do
│ └── xsim
│ ├── cmd.tcl
│ ├── design_1.sh
│ ├── elab.opt
│ ├── file_info.txt
│ ├── glbl.v
│ ├── ps7_init_gpl.h
│ ├── ps7_init.h
│ ├── ps7_init.html
│ ├── ps7_init.tcl
│ ├── README.txt
│ ├── vlog.prj
│ └── xsim.ini
├── project_6.runs
│ ├── design_1_wrapper.hdf
│ ├── impl_1
│ │ ├── design_1_wrapper.bit
│ │ ├── design_1_wrapper_clock_utilization_routed.rpt
│ │ ├── design_1_wrapper_control_sets_placed.rpt
│ │ ├── design_1_wrapper_drc_opted.rpt
│ │ ├── design_1_wrapper_drc_routed.pb
│ │ ├── design_1_wrapper_drc_routed.rpt
│ │ ├── design_1_wrapper_drc_routed.rpx
│ │ ├── design_1_wrapper.hdf
│ │ ├── design_1_wrapper.hwdef
│ │ ├── design_1_wrapper_io_placed.rpt
│ │ ├── design_1_wrapper_methodology_drc_routed.rpt
│ │ ├── design_1_wrapper_methodology_drc_routed.rpx
│ │ ├── design_1_wrapper_opt.dcp
│ │ ├── design_1_wrapper_placed.dcp
│ │ ├── design_1_wrapper_power_routed.rpt
│ │ ├── design_1_wrapper_power_routed.rpx
│ │ ├── design_1_wrapper_power_summary_routed.pb
│ │ ├── design_1_wrapper_routed.dcp
│ │ ├── design_1_wrapper_route_status.pb
│ │ ├── design_1_wrapper_route_status.rpt
│ │ ├── design_1_wrapper.sysdef
│ │ ├── design_1_wrapper.tcl
│ │ ├── design_1_wrapper_timing_summary_routed.rpt
│ │ ├── design_1_wrapper_timing_summary_routed.rpx
│ │ ├── design_1_wrapper_utilization_placed.pb
│ │ ├── design_1_wrapper_utilization_placed.rpt
│ │ ├── design_1_wrapper.vdi
│ │ ├── gen_run.xml
│ │ ├── htr.txt
│ │ ├── init_design.pb
│ │ ├── ISEWrap.js
│ │ ├── ISEWrap.sh
│ │ ├── opt_design.pb
│ │ ├── place_design.pb
│ │ ├── project.wdf
│ │ ├── route_design.pb
│ │ ├── rundef.js
│ │ ├── runme.bat
│ │ ├── runme.log
│ │ ├── runme.sh
│ │ ├── usage_statistics_webtalk.html
│ │ ├── usage_statistics_webtalk.xml
│ │ ├── vivado_5492.backup.jou
│ │ ├── vivado_6804.backup.jou
│ │ ├── vivado_7412.backup.jou
│ │ ├── vivado_7448.backup.jou
│ │ ├── vivado.jou
│ │ ├── vivado.pb
│ │ └── write_bitstream.pb
│ └── synth_1
│ ├── design_1_wrapper.dcp
│ ├── design_1_wrapper.tcl
│ ├── design_1_wrapper_utilization_synth.pb
│ ├── design_1_wrapper_utilization_synth.rpt
│ ├── design_1_wrapper.vds
│ ├── dont_touch.xdc
│ ├── gen_run.xml
│ ├── htr.txt
│ ├── ISEWrap.js
│ ├── ISEWrap.sh
│ ├── rundef.js
│ ├── runme.bat
│ ├── runme.log
│ ├── runme.sh
│ ├── vivado.jou
│ └── vivado.pb
├── project_6.sdk
│ ├── adf
│ │ ├── Debug
│ │ │ ├── adf.elf
│ │ │ ├── adf.elf.size
│ │ │ ├── makefile
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ ├── src
│ │ │ │ ├── helloworld.d
│ │ │ │ ├── helloworld.o
│ │ │ │ ├── platform.d
│ │ │ │ ├── platform.o
│ │ │ │ └── subdir.mk
│ │ │ └── Xilinx.spec
│ │ └── src
│ │ ├── helloworld.c
│ │ ├── lscript.ld
│ │ ├── platform.c
│ │ ├── platform_config.h
│ │ ├── platform.h
│ │ └── Xilinx.spec
│ ├── adf_bsp
│ │ ├── Makefile
│ │ ├── ps7_cortexa9_0
│ │ │ ├── include
│ │ │ │ └── xparameters.h
│ │ │ └── libsrc
│ │ │ ├── coresightps_dcc_v1_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xcoresightpsdcc.c
│ │ │ │ └── xcoresightpsdcc.h
│ │ │ ├── cpu_cortexa9_v2_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xcpu_cortexa9.h
│ │ │ ├── ddrps_v1_0
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xddrps.h
│ │ │ ├── devcfg_v3_4
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdevcfg.c
│ │ │ │ ├── xdevcfg_g.c
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.c
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdevcfg_intr.c
│ │ │ │ ├── xdevcfg_selftest.c
│ │ │ │ └── xdevcfg_sinit.c
│ │ │ ├── dmaps_v2_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdmaps.c
│ │ │ │ ├── xdmaps_g.c
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.c
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xdmaps_selftest.c
│ │ │ │ └── xdmaps_sinit.c
│ │ │ ├── gpiops_v3_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpiops.c
│ │ │ │ ├── xgpiops_g.c
│ │ │ │ ├── xgpiops.h
│ │ │ │ ├── xgpiops_hw.c
│ │ │ │ ├── xgpiops_hw.h
│ │ │ │ ├── xgpiops_intr.c
│ │ │ │ ├── xgpiops_selftest.c
│ │ │ │ └── xgpiops_sinit.c
│ │ │ ├── scugic_v3_5
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscugic.c
│ │ │ │ ├── xscugic_g.c
│ │ │ │ ├── xscugic.h
│ │ │ │ ├── xscugic_hw.c
│ │ │ │ ├── xscugic_hw.h
│ │ │ │ ├── xscugic_intr.c
│ │ │ │ ├── xscugic_selftest.c
│ │ │ │ └── xscugic_sinit.c
│ │ │ ├── scutimer_v2_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscutimer.c
│ │ │ │ ├── xscutimer_g.c
│ │ │ │ ├── xscutimer.h
│ │ │ │ ├── xscutimer_hw.h
│ │ │ │ ├── xscutimer_selftest.c
│ │ │ │ └── xscutimer_sinit.c
│ │ │ ├── scuwdt_v2_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscuwdt.c
│ │ │ │ ├── xscuwdt_g.c
│ │ │ │ ├── xscuwdt.h
│ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ ├── xscuwdt_selftest.c
│ │ │ │ └── xscuwdt_sinit.c
│ │ │ ├── standalone_v6_1
│ │ │ │ └── src
│ │ │ │ ├── abort.c
│ │ │ │ ├── asm_vectors.S
│ │ │ │ ├── boot.S
│ │ │ │ ├── bspconfig.h
│ │ │ │ ├── changelog.txt
│ │ │ │ ├── close.c
│ │ │ │ ├── config.make
│ │ │ │ ├── cpu_init.S
│ │ │ │ ├── errno.c
│ │ │ │ ├── _exit.c
│ │ │ │ ├── fcntl.c
│ │ │ │ ├── fstat.c
│ │ │ │ ├── getpid.c
│ │ │ │ ├── inbyte.c
│ │ │ │ ├── isatty.c
│ │ │ │ ├── kill.c
│ │ │ │ ├── lseek.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── _open.c
│ │ │ │ ├── open.c
│ │ │ │ ├── outbyte.c
│ │ │ │ ├── print.c
│ │ │ │ ├── profile
│ │ │ │ │ ├── dummy.S
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mblaze_nt_types.h
│ │ │ │ │ ├── profile_cg.c
│ │ │ │ │ ├── _profile_clean.c
│ │ │ │ │ ├── profile_config.h
│ │ │ │ │ ├── profile.h
│ │ │ │ │ ├── profile_hist.c
│ │ │ │ │ ├── _profile_init.c
│ │ │ │ │ ├── profile_mcount_arm.S
│ │ │ │ │ ├── profile_mcount_mb.S
│ │ │ │ │ ├── profile_mcount_ppc.S
│ │ │ │ │ ├── _profile_timer_hw.c
│ │ │ │ │ └── _profile_timer_hw.h
│ │ │ │ ├── putnum.c
│ │ │ │ ├── read.c
│ │ │ │ ├── _sbrk.c
│ │ │ │ ├── sbrk.c
│ │ │ │ ├── sleep.c
│ │ │ │ ├── sleep.h
│ │ │ │ ├── smc.h
│ │ │ │ ├── translation_table.S
│ │ │ │ ├── unlink.c
│ │ │ │ ├── usleep.c
│ │ │ │ ├── vectors.c
│ │ │ │ ├── vectors.h
│ │ │ │ ├── write.c
│ │ │ │ ├── xbasic_types.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xil_assert.c
│ │ │ │ ├── xil_assert.h
│ │ │ │ ├── xil_cache.c
│ │ │ │ ├── xil_cache.h
│ │ │ │ ├── xil_cache_l.h
│ │ │ │ ├── xil_cache_vxworks.h
│ │ │ │ ├── xil-crt0.S
│ │ │ │ ├── xil_errata.h
│ │ │ │ ├── xil_exception.c
│ │ │ │ ├── xil_exception.h
│ │ │ │ ├── xil_hal.h
│ │ │ │ ├── xil_io.c
│ │ │ │ ├── xil_io.h
│ │ │ │ ├── xil_macroback.h
│ │ │ │ ├── xil_misc_psreset_api.c
│ │ │ │ ├── xil_misc_psreset_api.h
│ │ │ │ ├── xil_mmu.c
│ │ │ │ ├── xil_mmu.h
│ │ │ │ ├── xil_printf.c
│ │ │ │ ├── xil_printf.h
│ │ │ │ ├── xil_testcache.c
│ │ │ │ ├── xil_testcache.h
│ │ │ │ ├── xil_testio.c
│ │ │ │ ├── xil_testio.h
│ │ │ │ ├── xil_testmem.c
│ │ │ │ ├── xil_testmem.h
│ │ │ │ ├── xil_types.h
│ │ │ │ ├── xl2cc_counter.c
│ │ │ │ ├── xl2cc_counter.h
│ │ │ │ ├── xl2cc.h
│ │ │ │ ├── xparameters_ps.h
│ │ │ │ ├── xplatform_info.c
│ │ │ │ ├── xplatform_info.h
│ │ │ │ ├── xpm_counter.c
│ │ │ │ ├── xpm_counter.h
│ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ ├── xpseudo_asm.h
│ │ │ │ ├── xreg_cortexa9.h
│ │ │ │ ├── xstatus.h
│ │ │ │ ├── xtime_l.c
│ │ │ │ └── xtime_l.h
│ │ │ ├── uartps_v3_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xuartps.c
│ │ │ │ ├── xuartps_g.c
│ │ │ │ ├── xuartps.h
│ │ │ │ ├── xuartps_hw.c
│ │ │ │ ├── xuartps_hw.h
│ │ │ │ ├── xuartps_intr.c
│ │ │ │ ├── xuartps_options.c
│ │ │ │ ├── xuartps_selftest.c
│ │ │ │ └── xuartps_sinit.c
│ │ │ └── xadcps_v2_2
│ │ │ └── src
│ │ │ ├── Makefile
│ │ │ ├── xadcps.c
│ │ │ ├── xadcps_g.c
│ │ │ ├── xadcps.h
│ │ │ ├── xadcps_hw.h
│ │ │ ├── xadcps_intr.c
│ │ │ ├── xadcps_selftest.c
│ │ │ └── xadcps_sinit.c
│ │ └── system.mss
│ ├── design_1_wrapper.hdf
│ ├── design_1_wrapper_hw_platform_0
│ │ ├── design_1_wrapper.bit
│ │ ├── ps7_init.c
│ │ ├── ps7_init_gpl.c
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ └── system.hdf
│ ├── design_1_wrapper_hw_platform_1
│ │ ├── design_1_wrapper.bit
│ │ ├── ps7_init.c
│ │ ├── ps7_init_gpl.c
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ └── system.hdf
│ ├── gdsdgs
│ │ ├── Debug
│ │ │ ├── gdsdgs.elf
│ │ │ ├── gdsdgs.elf.size
│ │ │ ├── makefile
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ ├── src
│ │ │ │ ├── helloworld.d
│ │ │ │ ├── helloworld.o
│ │ │ │ ├── platform.d
│ │ │ │ ├── platform.o
│ │ │ │ └── subdir.mk
│ │ │ └── Xilinx.spec
│ │ └── src
│ │ ├── helloworld.c
│ │ ├── lscript.ld
│ │ ├── platform.c
│ │ ├── platform_config.h
│ │ ├── platform.h
│ │ └── Xilinx.spec
│ ├── gdsdgs_bsp
│ │ ├── Makefile
│ │ ├── ps7_cortexa9_0
│ │ │ ├── include
│ │ │ │ ├── bspconfig.h
│ │ │ │ ├── mblaze_nt_types.h
│ │ │ │ ├── profile.h
│ │ │ │ ├── _profile_timer_hw.h
│ │ │ │ ├── sleep.h
│ │ │ │ ├── smc.h
│ │ │ │ ├── vectors.h
│ │ │ │ ├── xadcps.h
│ │ │ │ ├── xadcps_hw.h
│ │ │ │ ├── xbasic_types.h
│ │ │ │ ├── xcoresightpsdcc.h
│ │ │ │ ├── xcpu_cortexa9.h
│ │ │ │ ├── xddrps.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xgpiops.h
│ │ │ │ ├── xgpiops_hw.h
│ │ │ │ ├── xil_assert.h
│ │ │ │ ├── xil_cache.h
│ │ │ │ ├── xil_cache_l.h
│ │ │ │ ├── xil_cache_vxworks.h
│ │ │ │ ├── xil_errata.h
│ │ │ │ ├── xil_exception.h
│ │ │ │ ├── xil_hal.h
│ │ │ │ ├── xil_io.h
│ │ │ │ ├── xil_macroback.h
│ │ │ │ ├── xil_misc_psreset_api.h
│ │ │ │ ├── xil_mmu.h
│ │ │ │ ├── xil_printf.h
│ │ │ │ ├── xil_testcache.h
│ │ │ │ ├── xil_testio.h
│ │ │ │ ├── xil_testmem.h
│ │ │ │ ├── xil_types.h
│ │ │ │ ├── xl2cc_counter.h
│ │ │ │ ├── xl2cc.h
│ │ │ │ ├── xparameters.h
│ │ │ │ ├── xparameters_ps.h
│ │ │ │ ├── xplatform_info.h
│ │ │ │ ├── xpm_counter.h
│ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ ├── xpseudo_asm.h
│ │ │ │ ├── xreg_cortexa9.h
│ │ │ │ ├── xscugic.h
│ │ │ │ ├── xscugic_hw.h
│ │ │ │ ├── xscutimer.h
│ │ │ │ ├── xscutimer_hw.h
│ │ │ │ ├── xscuwdt.h
│ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ ├── xstatus.h
│ │ │ │ ├── xtime_l.h
│ │ │ │ ├── xuartps.h
│ │ │ │ └── xuartps_hw.h
│ │ │ ├── lib
│ │ │ │ └── libxil.a
│ │ │ └── libsrc
│ │ │ ├── coresightps_dcc_v1_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xcoresightpsdcc.c
│ │ │ │ └── xcoresightpsdcc.h
│ │ │ ├── cpu_cortexa9_v2_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xcpu_cortexa9.h
│ │ │ ├── ddrps_v1_0
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xddrps.h
│ │ │ ├── devcfg_v3_4
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdevcfg.c
│ │ │ │ ├── xdevcfg_g.c
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.c
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdevcfg_intr.c
│ │ │ │ ├── xdevcfg_selftest.c
│ │ │ │ └── xdevcfg_sinit.c
│ │ │ ├── dmaps_v2_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdmaps.c
│ │ │ │ ├── xdmaps_g.c
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.c
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xdmaps_selftest.c
│ │ │ │ └── xdmaps_sinit.c
│ │ │ ├── gpiops_v3_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpiops.c
│ │ │ │ ├── xgpiops_g.c
│ │ │ │ ├── xgpiops.h
│ │ │ │ ├── xgpiops_hw.c
│ │ │ │ ├── xgpiops_hw.h
│ │ │ │ ├── xgpiops_intr.c
│ │ │ │ ├── xgpiops_selftest.c
│ │ │ │ └── xgpiops_sinit.c
│ │ │ ├── scugic_v3_5
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscugic.c
│ │ │ │ ├── xscugic_g.c
│ │ │ │ ├── xscugic.h
│ │ │ │ ├── xscugic_hw.c
│ │ │ │ ├── xscugic_hw.h
│ │ │ │ ├── xscugic_intr.c
│ │ │ │ ├── xscugic_selftest.c
│ │ │ │ └── xscugic_sinit.c
│ │ │ ├── scutimer_v2_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscutimer.c
│ │ │ │ ├── xscutimer_g.c
│ │ │ │ ├── xscutimer.h
│ │ │ │ ├── xscutimer_hw.h
│ │ │ │ ├── xscutimer_selftest.c
│ │ │ │ └── xscutimer_sinit.c
│ │ │ ├── scuwdt_v2_1
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscuwdt.c
│ │ │ │ ├── xscuwdt_g.c
│ │ │ │ ├── xscuwdt.h
│ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ ├── xscuwdt_selftest.c
│ │ │ │ └── xscuwdt_sinit.c
│ │ │ ├── standalone_v6_1
│ │ │ │ └── src
│ │ │ │ ├── abort.c
│ │ │ │ ├── abort.o
│ │ │ │ ├── asm_vectors.o
│ │ │ │ ├── asm_vectors.S
│ │ │ │ ├── boot.o
│ │ │ │ ├── boot.S
│ │ │ │ ├── bspconfig.h
│ │ │ │ ├── changelog.txt
│ │ │ │ ├── close.c
│ │ │ │ ├── close.o
│ │ │ │ ├── config.make
│ │ │ │ ├── cpu_init.o
│ │ │ │ ├── cpu_init.S
│ │ │ │ ├── errno.c
│ │ │ │ ├── errno.o
│ │ │ │ ├── _exit.c
│ │ │ │ ├── _exit.o
│ │ │ │ ├── fcntl.c
│ │ │ │ ├── fcntl.o
│ │ │ │ ├── fstat.c
│ │ │ │ ├── fstat.o
│ │ │ │ ├── getpid.c
│ │ │ │ ├── getpid.o
│ │ │ │ ├── inbyte.c
│ │ │ │ ├── inbyte.o
│ │ │ │ ├── isatty.c
│ │ │ │ ├── isatty.o
│ │ │ │ ├── kill.c
│ │ │ │ ├── kill.o
│ │ │ │ ├── lseek.c
│ │ │ │ ├── lseek.o
│ │ │ │ ├── Makefile
│ │ │ │ ├── _open.c
│ │ │ │ ├── open.c
│ │ │ │ ├── _open.o
│ │ │ │ ├── open.o
│ │ │ │ ├── outbyte.c
│ │ │ │ ├── outbyte.o
│ │ │ │ ├── print.c
│ │ │ │ ├── print.o
│ │ │ │ ├── profile
│ │ │ │ │ ├── dummy.S
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── mblaze_nt_types.h
│ │ │ │ │ ├── profile_cg.c
│ │ │ │ │ ├── _profile_clean.c
│ │ │ │ │ ├── profile_config.h
│ │ │ │ │ ├── profile.h
│ │ │ │ │ ├── profile_hist.c
│ │ │ │ │ ├── _profile_init.c
│ │ │ │ │ ├── profile_mcount_arm.S
│ │ │ │ │ ├── profile_mcount_mb.S
│ │ │ │ │ ├── profile_mcount_ppc.S
│ │ │ │ │ ├── _profile_timer_hw.c
│ │ │ │ │ └── _profile_timer_hw.h
│ │ │ │ ├── putnum.c
│ │ │ │ ├── putnum.o
│ │ │ │ ├── read.c
│ │ │ │ ├── read.o
│ │ │ │ ├── _sbrk.c
│ │ │ │ ├── sbrk.c
│ │ │ │ ├── _sbrk.o
│ │ │ │ ├── sbrk.o
│ │ │ │ ├── sleep.c
│ │ │ │ ├── sleep.h
│ │ │ │ ├── sleep.o
│ │ │ │ ├── smc.h
│ │ │ │ ├── translation_table.o
│ │ │ │ ├── translation_table.S
│ │ │ │ ├── unlink.c
│ │ │ │ ├── unlink.o
│ │ │ │ ├── usleep.c
│ │ │ │ ├── usleep.o
│ │ │ │ ├── vectors.c
│ │ │ │ ├── vectors.h
│ │ │ │ ├── vectors.o
│ │ │ │ ├── write.c
│ │ │ │ ├── write.o
│ │ │ │ ├── xbasic_types.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xil_assert.c
│ │ │ │ ├── xil_assert.h
│ │ │ │ ├── xil_assert.o
│ │ │ │ ├── xil_cache.c
│ │ │ │ ├── xil_cache.h
│ │ │ │ ├── xil_cache_l.h
│ │ │ │ ├── xil_cache.o
│ │ │ │ ├── xil_cache_vxworks.h
│ │ │ │ ├── xil-crt0.o
│ │ │ │ ├── xil-crt0.S
│ │ │ │ ├── xil_errata.h
│ │ │ │ ├── xil_exception.c
│ │ │ │ ├── xil_exception.h
│ │ │ │ ├── xil_exception.o
│ │ │ │ ├── xil_hal.h
│ │ │ │ ├── xil_io.c
│ │ │ │ ├── xil_io.h
│ │ │ │ ├── xil_io.o
│ │ │ │ ├── xil_macroback.h
│ │ │ │ ├── xil_misc_psreset_api.c
│ │ │ │ ├── xil_misc_psreset_api.h
│ │ │ │ ├── xil_misc_psreset_api.o
│ │ │ │ ├── xil_mmu.c
│ │ │ │ ├── xil_mmu.h
│ │ │ │ ├── xil_mmu.o
│ │ │ │ ├── xil_printf.c
│ │ │ │ ├── xil_printf.h
│ │ │ │ ├── xil_printf.o
│ │ │ │ ├── xil_testcache.c
│ │ │ │ ├── xil_testcache.h
│ │ │ │ ├── xil_testcache.o
│ │ │ │ ├── xil_testio.c
│ │ │ │ ├── xil_testio.h
│ │ │ │ ├── xil_testio.o
│ │ │ │ ├── xil_testmem.c
│ │ │ │ ├── xil_testmem.h
│ │ │ │ ├── xil_testmem.o
│ │ │ │ ├── xil_types.h
│ │ │ │ ├── xl2cc_counter.c
│ │ │ │ ├── xl2cc_counter.h
│ │ │ │ ├── xl2cc_counter.o
│ │ │ │ ├── xl2cc.h
│ │ │ │ ├── xparameters_ps.h
│ │ │ │ ├── xplatform_info.c
│ │ │ │ ├── xplatform_info.h
│ │ │ │ ├── xplatform_info.o
│ │ │ │ ├── xpm_counter.c
│ │ │ │ ├── xpm_counter.h
│ │ │ │ ├── xpm_counter.o
│ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ ├── xpseudo_asm.h
│ │ │ │ ├── xreg_cortexa9.h
│ │ │ │ ├── xstatus.h
│ │ │ │ ├── xtime_l.c
│ │ │ │ ├── xtime_l.h
│ │ │ │ └── xtime_l.o
│ │ │ ├── uartps_v3_3
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xuartps.c
│ │ │ │ ├── xuartps_g.c
│ │ │ │ ├── xuartps.h
│ │ │ │ ├── xuartps_hw.c
│ │ │ │ ├── xuartps_hw.h
│ │ │ │ ├── xuartps_intr.c
│ │ │ │ ├── xuartps_options.c
│ │ │ │ ├── xuartps_selftest.c
│ │ │ │ └── xuartps_sinit.c
│ │ │ └── xadcps_v2_2
│ │ │ └── src
│ │ │ ├── Makefile
│ │ │ ├── xadcps.c
│ │ │ ├── xadcps_g.c
│ │ │ ├── xadcps.h
│ │ │ ├── xadcps_hw.h
│ │ │ ├── xadcps_intr.c
│ │ │ ├── xadcps_selftest.c
│ │ │ └── xadcps_sinit.c
│ │ └── system.mss
│ ├── RemoteSystemsTempFiles
│ └── SDK.log
├── project_6.srcs
│ ├── constrs_2
│ │ └── new
│ │ └── asd.xdc
│ └── sources_1
│ └── bd
│ └── design_1
│ ├── design_1.bd
│ ├── design_1.bxml
│ ├── design_1_ooc.xdc
│ ├── hdl
│ │ ├── design_1.hwdef
│ │ ├── design_1.v
│ │ └── design_1_wrapper.v
│ ├── hw_handoff
│ │ ├── design_1_bd.tcl
│ │ └── design_1.hwh
│ ├── ip
│ │ ├── design_1_axi_uart16550_0_0
│ │ │ ├── design_1_axi_uart16550_0_0.xci
│ │ │ └── design_1_axi_uart16550_0_0.xml
│ │ ├── design_1_axi_uartlite_0_0
│ │ │ ├── design_1_axi_uartlite_0_0.xci
│ │ │ └── design_1_axi_uartlite_0_0.xml
│ │ └── design_1_processing_system7_0_0
│ │ ├── design_1_processing_system7_0_0.xci
│ │ ├── design_1_processing_system7_0_0.xdc
│ │ ├── design_1_processing_system7_0_0.xml
│ │ ├── hdl
│ │ │ └── verilog
│ │ │ ├── design_1_processing_system7_0_0.hwdef
│ │ │ └── processing_system7_v5_5_processing_system7.v
│ │ ├── ps7_init.c
│ │ ├── ps7_init_gpl.c
│ │ ├── ps7_init_gpl.h
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── ps7_parameters.xml
│ │ ├── sim
│ │ │ ├── design_1_processing_system7_0_0.v
│ │ │ ├── libps7.so
│ │ │ └── libremoteport.so
│ │ └── synth
│ │ └── design_1_processing_system7_0_0.v
│ └── ipshared
│ ├── 7dd0
│ │ └── hdl
│ │ ├── processing_system7_bfm_v2_0_5_apis.v
│ │ ├── processing_system7_bfm_v2_0_5_axi_acp.v
│ │ ├── processing_system7_bfm_v2_0_5_axi_gp.v
│ │ ├── processing_system7_bfm_v2_0_5_axi_hp.v
│ │ ├── processing_system7_bfm_v2_0_5_local_params.v
│ │ ├── processing_system7_bfm_v2_0_5_reg_init.v
│ │ ├── processing_system7_bfm_v2_0_5_reg_params.v
│ │ ├── processing_system7_bfm_v2_0_5_unused_ports.v
│ │ └── processing_system7_bfm_v2_0_vl_rfs.v
│ └── 8c13
│ └── hdl
│ └── verilog
│ ├── processing_system7_v5_5_atc.v
│ ├── processing_system7_v5_5_aw_atc.v
│ ├── processing_system7_v5_5_b_atc.v
│ ├── processing_system7_v5_5_trace_buffer.v
│ └── processing_system7_v5_5_w_atc.v
├── project_6.xpr
├── vivado.jou
└── vivado.log
118 directories, 700 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论