实例介绍
在vivado2013.2(2014.1)下验证成功,包括helloworld、debug、booting from SD/QSPI等三个例程,可以了解Xilinx软硬件协同开发的原理、vivado+SDK+zedboard开发流程等。
【实例截图】
【核心代码】
4744300845405759297.7z
└── hellozynq
├── hellozynq.cache
│ ├── compile_simlib
│ └── wt
│ ├── java_command_handlers.wdf
│ ├── project.wpc
│ ├── synthesis.wdf
│ └── webtalk_pa.xml
├── hellozynq.runs
│ ├── impl_1
│ │ ├── design_1_wrapper_14856.backup.rdi
│ │ ├── design_1_wrapper_bd.bmm
│ │ ├── design_1_wrapper.bit
│ │ ├── design_1_wrapper_clock_utilization_placed.rpt
│ │ ├── design_1_wrapper_control_sets_placed.rpt
│ │ ├── design_1_wrapper_drc_routed.pb
│ │ ├── design_1_wrapper_drc_routed.rpt
│ │ ├── design_1_wrapper_io_placed.rpt
│ │ ├── design_1_wrapper_opt.dcp
│ │ ├── design_1_wrapper_placed.dcp
│ │ ├── design_1_wrapper_power_routed.rpt
│ │ ├── design_1_wrapper_power_summary_routed.pb
│ │ ├── design_1_wrapper_routed.dcp
│ │ ├── design_1_wrapper.tcl
│ │ ├── design_1_wrapper_timing_summary_routed.pb
│ │ ├── design_1_wrapper_timing_summary_routed.rpt
│ │ ├── 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_12028.backup.jou
│ │ ├── vivado_14856.backup.jou
│ │ ├── vivado_19588.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
│ ├── fsm_encoding.os
│ ├── gen_run.xml
│ ├── htr.txt
│ ├── ISEWrap.js
│ ├── ISEWrap.sh
│ ├── rundef.js
│ ├── runme.bat
│ ├── runme.log
│ ├── runme.sh
│ ├── vivado.jou
│ └── vivado.pb
├── hellozynq.sdk
│ └── SDK
│ ├── output
│ │ ├── bootimage.bif
│ │ └── u-boot.mcs
│ └── SDK_Export
│ ├── fsbl_zynq
│ │ ├── Debug
│ │ │ ├── fsbl_zynq.elf
│ │ │ ├── fsbl_zynq.elf.size
│ │ │ ├── makefile
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── ddr_init.d
│ │ │ ├── ddr_init.o
│ │ │ ├── ff.d
│ │ │ ├── ff.o
│ │ │ ├── fsbl_handoff.d
│ │ │ ├── fsbl_handoff.o
│ │ │ ├── fsbl_hooks.d
│ │ │ ├── fsbl_hooks.o
│ │ │ ├── image_mover.d
│ │ │ ├── image_mover.o
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── md5.d
│ │ │ ├── md5.o
│ │ │ ├── mmc.d
│ │ │ ├── mmc.o
│ │ │ ├── nand.d
│ │ │ ├── nand.o
│ │ │ ├── nor.d
│ │ │ ├── nor.o
│ │ │ ├── pcap.d
│ │ │ ├── pcap.o
│ │ │ ├── ps7_init.d
│ │ │ ├── ps7_init.o
│ │ │ ├── qspi.d
│ │ │ ├── qspi.o
│ │ │ ├── rsa.d
│ │ │ ├── rsa.o
│ │ │ ├── sd.d
│ │ │ ├── sd.o
│ │ │ └── subdir.mk
│ │ └── src
│ │ ├── ddr_init.c
│ │ ├── diskio.h
│ │ ├── ff.c
│ │ ├── ffconf.h
│ │ ├── ff.h
│ │ ├── fsbl_debug.h
│ │ ├── fsbl.h
│ │ ├── fsbl_handoff.S
│ │ ├── fsbl_hooks.c
│ │ ├── fsbl_hooks.h
│ │ ├── image_mover.c
│ │ ├── image_mover.h
│ │ ├── integer.h
│ │ ├── librsa.a
│ │ ├── lscript.ld
│ │ ├── main.c
│ │ ├── md5.c
│ │ ├── md5.h
│ │ ├── mmc.c
│ │ ├── nand.c
│ │ ├── nand.h
│ │ ├── nor.c
│ │ ├── nor.h
│ │ ├── pcap.c
│ │ ├── pcap.h
│ │ ├── ps7_init.c
│ │ ├── ps7_init.h
│ │ ├── qspi.c
│ │ ├── qspi.h
│ │ ├── rsa.c
│ │ ├── rsa.h
│ │ ├── sd.c
│ │ ├── sd.h
│ │ └── sd_hardware.h
│ ├── fsbl_zynq_bsp
│ │ ├── libgen.log
│ │ ├── libgen.options
│ │ ├── Makefile
│ │ ├── ps7_cortexa9_0
│ │ │ ├── code
│ │ │ ├── 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
│ │ │ │ ├── xbram.h
│ │ │ │ ├── xbram_hw.h
│ │ │ │ ├── xcpu_cortexa9.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xemacps_bd.h
│ │ │ │ ├── xemacps_bdring.h
│ │ │ │ ├── xemacps.h
│ │ │ │ ├── xemacps_hw.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_none.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xenv_vxworks.h
│ │ │ │ ├── xgpio.h
│ │ │ │ ├── xgpio_l.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_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
│ │ │ │ ├── xpm_counter.h
│ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ ├── xpseudo_asm.h
│ │ │ │ ├── xqspips.h
│ │ │ │ ├── xqspips_hw.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
│ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ ├── xusbps.h
│ │ │ │ ├── xusbps_hw.h
│ │ │ │ ├── xutil.h
│ │ │ │ └── xversion.h
│ │ │ ├── lib
│ │ │ │ └── libxil.a
│ │ │ └── libsrc
│ │ │ ├── bram_v3_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xbram.c
│ │ │ │ ├── xbram_g.c
│ │ │ │ ├── xbram.h
│ │ │ │ ├── xbram_hw.h
│ │ │ │ ├── xbram_intr.c
│ │ │ │ ├── xbram_selftest.c
│ │ │ │ └── xbram_sinit.c
│ │ │ ├── common_v1_00_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xbasic_types.c
│ │ │ │ ├── xbasic_types.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_linux.h
│ │ │ │ ├── xenv_none.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xenv_vxworks.h
│ │ │ │ ├── xparameters.h
│ │ │ │ ├── xstatus.h
│ │ │ │ ├── xutil.h
│ │ │ │ ├── xutil_memtest.c
│ │ │ │ ├── xversion.c
│ │ │ │ └── xversion.h
│ │ │ ├── cpu_cortexa9_v1_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xcpu_cortexa9.h
│ │ │ ├── devcfg_v2_03_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdevcfg.c
│ │ │ │ ├── xdevcfg_g.c
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdevcfg_intr.c
│ │ │ │ ├── xdevcfg_selftest.c
│ │ │ │ └── xdevcfg_sinit.c
│ │ │ ├── dmaps_v1_05_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdmaps.c
│ │ │ │ ├── xdmaps_g.c
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xdmaps_selftest.c
│ │ │ │ └── xdmaps_sinit.c
│ │ │ ├── emacps_v1_04_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xemacps_bd.h
│ │ │ │ ├── xemacps_bdring.c
│ │ │ │ ├── xemacps_bdring.h
│ │ │ │ ├── xemacps.c
│ │ │ │ ├── xemacps_control.c
│ │ │ │ ├── xemacps_g.c
│ │ │ │ ├── xemacps.h
│ │ │ │ ├── xemacps_hw.h
│ │ │ │ ├── xemacps_intr.c
│ │ │ │ └── xemacps_sinit.c
│ │ │ ├── generic_v1_00_a
│ │ │ │ └── src
│ │ │ ├── gpiops_v1_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpiops.c
│ │ │ │ ├── xgpiops_g.c
│ │ │ │ ├── xgpiops.h
│ │ │ │ ├── xgpiops_hw.h
│ │ │ │ ├── xgpiops_intr.c
│ │ │ │ ├── xgpiops_selftest.c
│ │ │ │ └── xgpiops_sinit.c
│ │ │ ├── gpio_v3_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpio.c
│ │ │ │ ├── xgpio_extra.c
│ │ │ │ ├── xgpio_g.c
│ │ │ │ ├── xgpio.h
│ │ │ │ ├── xgpio_i.h
│ │ │ │ ├── xgpio_intr.c
│ │ │ │ ├── xgpio_l.h
│ │ │ │ ├── xgpio_selftest.c
│ │ │ │ └── xgpio_sinit.c
│ │ │ ├── qspips_v2_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xqspips.c
│ │ │ │ ├── xqspips_g.c
│ │ │ │ ├── xqspips.h
│ │ │ │ ├── xqspips_hw.h
│ │ │ │ ├── xqspips_options.c
│ │ │ │ ├── xqspips_selftest.c
│ │ │ │ └── xqspips_sinit.c
│ │ │ ├── scugic_v1_04_a
│ │ │ │ └── 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_v1_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscutimer.c
│ │ │ │ ├── xscutimer_g.c
│ │ │ │ ├── xscutimer.h
│ │ │ │ ├── xscutimer_hw.h
│ │ │ │ ├── xscutimer_selftest.c
│ │ │ │ └── xscutimer_sinit.c
│ │ │ ├── scuwdt_v1_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscuwdt.c
│ │ │ │ ├── xscuwdt_g.c
│ │ │ │ ├── xscuwdt.h
│ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ ├── xscuwdt_selftest.c
│ │ │ │ └── xscuwdt_sinit.c
│ │ │ ├── standalone_v3_10_a
│ │ │ │ └── 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.c
│ │ │ │ ├── smc.h
│ │ │ │ ├── smc.o
│ │ │ │ ├── translation_table.o
│ │ │ │ ├── translation_table.s
│ │ │ │ ├── uart.c
│ │ │ │ ├── uart.o
│ │ │ │ ├── unlink.c
│ │ │ │ ├── unlink.o
│ │ │ │ ├── usleep.c
│ │ │ │ ├── usleep.o
│ │ │ │ ├── vectors.c
│ │ │ │ ├── vectors.h
│ │ │ │ ├── vectors.o
│ │ │ │ ├── write.c
│ │ │ │ ├── write.o
│ │ │ │ ├── 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_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
│ │ │ │ ├── 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_v1_04_a
│ │ │ │ └── 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
│ │ │ ├── usbps_v1_04_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xusbps.c
│ │ │ │ ├── xusbps_endpoint.c
│ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ ├── xusbps_g.c
│ │ │ │ ├── xusbps.h
│ │ │ │ ├── xusbps_hw.h
│ │ │ │ ├── xusbps_intr.c
│ │ │ │ └── xusbps_sinit.c
│ │ │ └── xadcps_v1_01_a
│ │ │ └── src
│ │ │ ├── Makefile
│ │ │ ├── xadcps.c
│ │ │ ├── xadcps_g.c
│ │ │ ├── xadcps.h
│ │ │ ├── xadcps_hw.h
│ │ │ ├── xadcps_intr.c
│ │ │ ├── xadcps_selftest.c
│ │ │ └── xadcps_sinit.c
│ │ └── system.mss
│ ├── hw
│ │ ├── design_1_wrapper.bit
│ │ ├── design_1.xml
│ │ ├── ps7_init.c
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ └── ps7_summary.html
│ ├── hw_platform_0
│ │ ├── ps7_init.c
│ │ ├── ps7_init.h
│ │ ├── ps7_init.html
│ │ ├── ps7_init.tcl
│ │ ├── system.bit
│ │ └── system.xml
│ ├── Marquee
│ │ ├── Debug
│ │ │ ├── makefile
│ │ │ ├── Marquee.elf
│ │ │ ├── Marquee.elf.size
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── Marquee.d
│ │ │ ├── Marquee.o
│ │ │ └── subdir.mk
│ │ └── src
│ │ ├── lscript.ld
│ │ ├── Marquee.c
│ │ └── README.txt
│ ├── Marquee_bsp
│ │ ├── libgen.log
│ │ ├── libgen.options
│ │ ├── Makefile
│ │ ├── ps7_cortexa9_0
│ │ │ ├── code
│ │ │ ├── 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
│ │ │ │ ├── xbram.h
│ │ │ │ ├── xbram_hw.h
│ │ │ │ ├── xcpu_cortexa9.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xemacps_bd.h
│ │ │ │ ├── xemacps_bdring.h
│ │ │ │ ├── xemacps.h
│ │ │ │ ├── xemacps_hw.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_none.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xenv_vxworks.h
│ │ │ │ ├── xgpio.h
│ │ │ │ ├── xgpio_l.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_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
│ │ │ │ ├── xpm_counter.h
│ │ │ │ ├── xpseudo_asm_gcc.h
│ │ │ │ ├── xpseudo_asm.h
│ │ │ │ ├── xqspips.h
│ │ │ │ ├── xqspips_hw.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
│ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ ├── xusbps.h
│ │ │ │ ├── xusbps_hw.h
│ │ │ │ ├── xutil.h
│ │ │ │ └── xversion.h
│ │ │ ├── lib
│ │ │ │ └── libxil.a
│ │ │ └── libsrc
│ │ │ ├── bram_v3_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xbram.c
│ │ │ │ ├── xbram_g.c
│ │ │ │ ├── xbram.h
│ │ │ │ ├── xbram_hw.h
│ │ │ │ ├── xbram_intr.c
│ │ │ │ ├── xbram_selftest.c
│ │ │ │ └── xbram_sinit.c
│ │ │ ├── common_v1_00_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xbasic_types.c
│ │ │ │ ├── xbasic_types.h
│ │ │ │ ├── xdebug.h
│ │ │ │ ├── xenv.h
│ │ │ │ ├── xenv_linux.h
│ │ │ │ ├── xenv_none.h
│ │ │ │ ├── xenv_standalone.h
│ │ │ │ ├── xenv_vxworks.h
│ │ │ │ ├── xparameters.h
│ │ │ │ ├── xstatus.h
│ │ │ │ ├── xutil.h
│ │ │ │ ├── xutil_memtest.c
│ │ │ │ ├── xversion.c
│ │ │ │ └── xversion.h
│ │ │ ├── cpu_cortexa9_v1_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ └── xcpu_cortexa9.h
│ │ │ ├── devcfg_v2_03_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdevcfg.c
│ │ │ │ ├── xdevcfg_g.c
│ │ │ │ ├── xdevcfg.h
│ │ │ │ ├── xdevcfg_hw.h
│ │ │ │ ├── xdevcfg_intr.c
│ │ │ │ ├── xdevcfg_selftest.c
│ │ │ │ └── xdevcfg_sinit.c
│ │ │ ├── dmaps_v1_05_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xdmaps.c
│ │ │ │ ├── xdmaps_g.c
│ │ │ │ ├── xdmaps.h
│ │ │ │ ├── xdmaps_hw.h
│ │ │ │ ├── xdmaps_selftest.c
│ │ │ │ └── xdmaps_sinit.c
│ │ │ ├── emacps_v1_04_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xemacps_bd.h
│ │ │ │ ├── xemacps_bdring.c
│ │ │ │ ├── xemacps_bdring.h
│ │ │ │ ├── xemacps.c
│ │ │ │ ├── xemacps_control.c
│ │ │ │ ├── xemacps_g.c
│ │ │ │ ├── xemacps.h
│ │ │ │ ├── xemacps_hw.h
│ │ │ │ ├── xemacps_intr.c
│ │ │ │ └── xemacps_sinit.c
│ │ │ ├── generic_v1_00_a
│ │ │ │ └── src
│ │ │ ├── gpiops_v1_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpiops.c
│ │ │ │ ├── xgpiops_g.c
│ │ │ │ ├── xgpiops.h
│ │ │ │ ├── xgpiops_hw.h
│ │ │ │ ├── xgpiops_intr.c
│ │ │ │ ├── xgpiops_selftest.c
│ │ │ │ └── xgpiops_sinit.c
│ │ │ ├── gpio_v3_01_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xgpio.c
│ │ │ │ ├── xgpio_extra.c
│ │ │ │ ├── xgpio_g.c
│ │ │ │ ├── xgpio.h
│ │ │ │ ├── xgpio_i.h
│ │ │ │ ├── xgpio_intr.c
│ │ │ │ ├── xgpio_l.h
│ │ │ │ ├── xgpio_selftest.c
│ │ │ │ └── xgpio_sinit.c
│ │ │ ├── qspips_v2_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xqspips.c
│ │ │ │ ├── xqspips_g.c
│ │ │ │ ├── xqspips.h
│ │ │ │ ├── xqspips_hw.h
│ │ │ │ ├── xqspips_options.c
│ │ │ │ ├── xqspips_selftest.c
│ │ │ │ └── xqspips_sinit.c
│ │ │ ├── scugic_v1_04_a
│ │ │ │ └── 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_v1_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscutimer.c
│ │ │ │ ├── xscutimer_g.c
│ │ │ │ ├── xscutimer.h
│ │ │ │ ├── xscutimer_hw.h
│ │ │ │ ├── xscutimer_selftest.c
│ │ │ │ └── xscutimer_sinit.c
│ │ │ ├── scuwdt_v1_02_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xscuwdt.c
│ │ │ │ ├── xscuwdt_g.c
│ │ │ │ ├── xscuwdt.h
│ │ │ │ ├── xscuwdt_hw.h
│ │ │ │ ├── xscuwdt_selftest.c
│ │ │ │ └── xscuwdt_sinit.c
│ │ │ ├── standalone_v3_10_a
│ │ │ │ └── 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.c
│ │ │ │ ├── smc.h
│ │ │ │ ├── smc.o
│ │ │ │ ├── translation_table.o
│ │ │ │ ├── translation_table.s
│ │ │ │ ├── uart.c
│ │ │ │ ├── uart.o
│ │ │ │ ├── unlink.c
│ │ │ │ ├── unlink.o
│ │ │ │ ├── usleep.c
│ │ │ │ ├── usleep.o
│ │ │ │ ├── vectors.c
│ │ │ │ ├── vectors.h
│ │ │ │ ├── vectors.o
│ │ │ │ ├── write.c
│ │ │ │ ├── write.o
│ │ │ │ ├── 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_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
│ │ │ │ ├── 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_v1_04_a
│ │ │ │ └── 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
│ │ │ ├── usbps_v1_04_a
│ │ │ │ └── src
│ │ │ │ ├── Makefile
│ │ │ │ ├── xusbps.c
│ │ │ │ ├── xusbps_endpoint.c
│ │ │ │ ├── xusbps_endpoint.h
│ │ │ │ ├── xusbps_g.c
│ │ │ │ ├── xusbps.h
│ │ │ │ ├── xusbps_hw.h
│ │ │ │ ├── xusbps_intr.c
│ │ │ │ └── xusbps_sinit.c
│ │ │ └── xadcps_v1_01_a
│ │ │ └── src
│ │ │ ├── Makefile
│ │ │ ├── xadcps.c
│ │ │ ├── xadcps_g.c
│ │ │ ├── xadcps.h
│ │ │ ├── xadcps_hw.h
│ │ │ ├── xadcps_intr.c
│ │ │ ├── xadcps_selftest.c
│ │ │ └── xadcps_sinit.c
│ │ └── system.mss
│ └── SDK.log
├── hellozynq.srcs
│ └── sources_1
│ ├── bd
│ │ └── design_1
│ │ ├── design_1.bd
│ │ ├── design_1.bmm
│ │ ├── design_1.bxml
│ │ ├── design_1_ooc.xdc
│ │ ├── hdl
│ │ │ ├── design_1.v
│ │ │ └── design_1_wrapper.v
│ │ ├── ip
│ │ │ ├── design_1_auto_pc_0
│ │ │ │ ├── design_1_auto_pc_0_ooc.xdc
│ │ │ │ ├── design_1_auto_pc_0.xci
│ │ │ │ ├── design_1_auto_pc_0.xml
│ │ │ │ └── synth
│ │ │ │ └── design_1_auto_pc_0.v
│ │ │ ├── design_1_auto_pc_1
│ │ │ │ ├── design_1_auto_pc_1_ooc.xdc
│ │ │ │ ├── design_1_auto_pc_1.xci
│ │ │ │ ├── design_1_auto_pc_1.xml
│ │ │ │ └── synth
│ │ │ │ └── design_1_auto_pc_1.v
│ │ │ ├── design_1_axi_bram_ctrl_1_0
│ │ │ │ ├── design_1_axi_bram_ctrl_1_0_ooc.xdc
│ │ │ │ ├── design_1_axi_bram_ctrl_1_0.upgrade_log
│ │ │ │ ├── design_1_axi_bram_ctrl_1_0.xci
│ │ │ │ ├── design_1_axi_bram_ctrl_1_0.xml
│ │ │ │ └── synth
│ │ │ │ └── design_1_axi_bram_ctrl_1_0.vhd
│ │ │ ├── design_1_axi_gpio_1_0
│ │ │ │ ├── design_1_axi_gpio_1_0_board.xdc
│ │ │ │ ├── design_1_axi_gpio_1_0_ooc.xdc
│ │ │ │ ├── design_1_axi_gpio_1_0.upgrade_log
│ │ │ │ ├── design_1_axi_gpio_1_0.xci
│ │ │ │ ├── design_1_axi_gpio_1_0.xdc
│ │ │ │ ├── design_1_axi_gpio_1_0.xml
│ │ │ │ └── synth
│ │ │ │ └── design_1_axi_gpio_1_0.vhd
│ │ │ ├── design_1_blk_mem_gen_1_0
│ │ │ │ ├── design_1_blk_mem_gen_1_0_ooc.xdc
│ │ │ │ ├── design_1_blk_mem_gen_1_0.upgrade_log
│ │ │ │ ├── design_1_blk_mem_gen_1_0.xci
│ │ │ │ ├── design_1_blk_mem_gen_1_0.xml
│ │ │ │ ├── summary.log
│ │ │ │ └── synth
│ │ │ │ └── design_1_blk_mem_gen_1_0.vhd
│ │ │ ├── design_1_processing_system7_1_0
│ │ │ │ ├── design_1_processing_system7_1_0.upgrade_log
│ │ │ │ ├── design_1_processing_system7_1_0.xci
│ │ │ │ ├── design_1_processing_system7_1_0.xdc
│ │ │ │ ├── design_1_processing_system7_1_0.xml
│ │ │ │ ├── hdl
│ │ │ │ │ └── verilog
│ │ │ │ │ └── processing_system7_v5_4_processing_system7.v
│ │ │ │ ├── ps7_constraints_wrapper.ucf
│ │ │ │ ├── ps7_init.c
│ │ │ │ ├── ps7_init.h
│ │ │ │ ├── ps7_init.html
│ │ │ │ ├── ps7_init.tcl
│ │ │ │ ├── ps7_parameters.xml
│ │ │ │ ├── ps_clock_registers.log
│ │ │ │ └── synth
│ │ │ │ └── design_1_processing_system7_1_0.v
│ │ │ ├── design_1_processing_system7_1_axi_periph_0
│ │ │ │ ├── design_1_processing_system7_1_axi_periph_0.upgrade_log
│ │ │ │ ├── design_1_processing_system7_1_axi_periph_0.xci
│ │ │ │ └── design_1_processing_system7_1_axi_periph_0.xml
│ │ │ ├── design_1_proc_sys_reset_0
│ │ │ │ ├── design_1_proc_sys_reset_0_board.xdc
│ │ │ │ ├── design_1_proc_sys_reset_0_ooc.xdc
│ │ │ │ ├── design_1_proc_sys_reset_0.upgrade_log
│ │ │ │ ├── design_1_proc_sys_reset_0.xci
│ │ │ │ ├── design_1_proc_sys_reset_0.xdc
│ │ │ │ ├── design_1_proc_sys_reset_0.xml
│ │ │ │ └── synth
│ │ │ │ └── design_1_proc_sys_reset_0.vhd
│ │ │ └── design_1_xbar_0
│ │ │ ├── design_1_xbar_0_ooc.xdc
│ │ │ ├── design_1_xbar_0.xci
│ │ │ ├── design_1_xbar_0.xml
│ │ │ └── synth
│ │ │ └── design_1_xbar_0.v
│ │ └── ui
│ │ └── bd_1f5defd0.ui
│ ├── imports
│ │ └── hdl
│ │ └── design_1_wrapper.v
│ └── ipshared
│ └── xilinx.com
│ ├── axi_bram_ctrl_v4_0
│ │ └── 0289339c
│ │ └── hdl
│ │ └── vhdl
│ │ ├── axi_bram_ctrl_funcs.vhd
│ │ ├── axi_bram_ctrl_top.vhd
│ │ ├── axi_bram_ctrl.vhd
│ │ ├── axi_lite_if.vhd
│ │ ├── axi_lite.vhd
│ │ ├── checkbit_handler_64.vhd
│ │ ├── checkbit_handler.vhd
│ │ ├── coregen_comp_defs.vhd
│ │ ├── correct_one_bit_64.vhd
│ │ ├── correct_one_bit.vhd
│ │ ├── ecc_gen.vhd
│ │ ├── full_axi.vhd
│ │ ├── lite_ecc_reg.vhd
│ │ ├── parity.vhd
│ │ ├── rd_chnl.vhd
│ │ ├── sng_port_arb.vhd
│ │ ├── srl_fifo.vhd
│ │ ├── ua_narrow.vhd
│ │ ├── wrap_brst.vhd
│ │ ├── wr_chnl.vhd
│ │ └── xor18.vhd
│ ├── axi_crossbar_v2_1
│ │ └── 2e81f3ad
│ │ └── hdl
│ │ └── verilog
│ │ ├── axi_crossbar_v2_1_addr_arbiter_sasd.v
│ │ ├── axi_crossbar_v2_1_addr_arbiter.v
│ │ ├── axi_crossbar_v2_1_addr_decoder.v
│ │ ├── axi_crossbar_v2_1_arbiter_resp.v
│ │ ├── axi_crossbar_v2_1_axi_crossbar.v
│ │ ├── axi_crossbar_v2_1_crossbar_sasd.v
│ │ ├── axi_crossbar_v2_1_crossbar.v
│ │ ├── axi_crossbar_v2_1_decerr_slave.v
│ │ ├── axi_crossbar_v2_1_si_transactor.v
│ │ ├── axi_crossbar_v2_1_splitter.v
│ │ ├── axi_crossbar_v2_1_wdata_mux.v
│ │ └── axi_crossbar_v2_1_wdata_router.v
│ ├── axi_data_fifo_v2_1
│ │ └── fcdb10ca
│ │ └── hdl
│ │ └── verilog
│ │ ├── axi_data_fifo_v2_1_axic_fifo.v
│ │ ├── axi_data_fifo_v2_1_axic_reg_srl_fifo.v
│ │ ├── axi_data_fifo_v2_1_axic_srl_fifo.v
│ │ ├── axi_data_fifo_v2_1_axi_data_fifo.v
│ │ ├── axi_data_fifo_v2_1_fifo_gen.v
│ │ └── axi_data_fifo_v2_1_ndeep_srl.v
│ ├── axi_gpio_v2_0
│ │ └── 5a4a6737
│ │ └── hdl
│ │ └── src
│ │ └── vhdl
│ │ ├── axi_gpio.vhd
│ │ └── gpio_core.vhd
│ ├── axi_infrastructure_v1_1
│ │ └── e13550d2
│ │ └── hdl
│ │ └── verilog
│ │ ├── axi_infrastructure_v1_1_axi2vector.v
│ │ ├── axi_infrastructure_v1_1_axic_srl_fifo.v
│ │ ├── axi_infrastructure_v1_1_header.vh
│ │ └── axi_infrastructure_v1_1_vector2axi.v
│ ├── axi_lite_ipif_v2_0
│ │ └── 82c7a66d
│ │ └── hdl
│ │ └── src
│ │ └── vhdl
│ │ ├── address_decoder.vhd
│ │ ├── axi_lite_ipif.vhd
│ │ └── slave_attachment.vhd
│ ├── axi_protocol_converter_v2_1
│ │ └── fcff1c57
│ │ └── hdl
│ │ └── verilog
│ │ ├── axi_protocol_converter_v2_1_a_axi3_conv.v
│ │ ├── axi_protocol_converter_v2_1_axi3_conv.v
│ │ ├── axi_protocol_converter_v2_1_axilite_conv.v
│ │ ├── axi_protocol_converter_v2_1_axi_protocol_converter.v
│ │ ├── axi_protocol_converter_v2_1_b2s_ar_channel.v
│ │ ├── axi_protocol_converter_v2_1_b2s_aw_channel.v
│ │ ├── axi_protocol_converter_v2_1_b2s_b_channel.v
│ │ ├── axi_protocol_converter_v2_1_b2s_cmd_translator.v
│ │ ├── axi_protocol_converter_v2_1_b2s_incr_cmd.v
│ │ ├── axi_protocol_converter_v2_1_b2s_r_channel.v
│ │ ├── axi_protocol_converter_v2_1_b2s_rd_cmd_fsm.v
│ │ ├── axi_protocol_converter_v2_1_b2s_simple_fifo.v
│ │ ├── axi_protocol_converter_v2_1_b2s.v
│ │ ├── axi_protocol_converter_v2_1_b2s_wrap_cmd.v
│ │ ├── axi_protocol_converter_v2_1_b2s_wr_cmd_fsm.v
│ │ ├── axi_protocol_converter_v2_1_b_downsizer.v
│ │ ├── axi_protocol_converter_v2_1_decerr_slave.v
│ │ ├── axi_protocol_converter_v2_1_r_axi3_conv.v
│ │ └── axi_protocol_converter_v2_1_w_axi3_conv.v
│ ├── axi_register_slice_v2_1
│ │ └── a2538a4c
│ │ └── hdl
│ │ └── verilog
│ │ ├── axi_register_slice_v2_1_axic_register_slice.v
│ │ └── axi_register_slice_v2_1_axi_register_slice.v
│ ├── blk_mem_gen_v8_2
│ │ └── f2a44852
│ │ └── hdl
│ │ ├── blk_mem_axi_read_fsm.vhd
│ │ ├── blk_mem_axi_read_wrapper.vhd
│ │ ├── blk_mem_axi_regs_fwd.vhd
│ │ ├── blk_mem_axi_write_fsm.vhd
│ │ ├── blk_mem_axi_write_wrapper.vhd
│ │ ├── blk_mem_gen_bindec.vhd
│ │ ├── blk_mem_gen_ecc_decoder.vhd
│ │ ├── blk_mem_gen_ecc_encoder.vhd
│ │ ├── blk_mem_gen_generic_cstr.vhd
│ │ ├── blk_mem_gen_getinit_pkg.vhd
│ │ ├── blk_mem_gen_mux.vhd
│ │ ├── blk_mem_gen_prim_width.vhd
│ │ ├── blk_mem_gen_prim_wrapper_init.vhd
│ │ ├── blk_mem_gen_prim_wrapper.vhd
│ │ ├── blk_mem_gen_top.vhd
│ │ ├── blk_mem_gen_v8_2_defaults.vhd
│ │ ├── blk_mem_gen_v8_2_pkg.vhd
│ │ ├── blk_mem_gen_v8_2_synth_comp.vhd
│ │ ├── blk_mem_gen_v8_2_synth.vhd
│ │ ├── blk_mem_gen_v8_2.vhd
│ │ ├── blk_mem_input_block.vhd
│ │ ├── blk_mem_min_area_pkg.vhd
│ │ └── blk_mem_output_block.vhd
│ ├── fifo_generator_v12_0
│ │ └── 924f3d25
│ │ └── hdl
│ │ ├── builtin
│ │ │ ├── bin_cntr.vhd
│ │ │ ├── builtin_extdepth_low_latency.vhd
│ │ │ ├── builtin_extdepth_v6.vhd
│ │ │ ├── builtin_extdepth.vhd
│ │ │ ├── builtin_prim_v6.vhd
│ │ │ ├── builtin_prim.vhd
│ │ │ ├── builtin_top_v6.vhd
│ │ │ ├── builtin_top.vhd
│ │ │ ├── clk_x_pntrs_builtin.vhd
│ │ │ ├── delay.vhd
│ │ │ ├── fifo_generator_v12_0_builtin.vhd
│ │ │ ├── fifo_generator_v12_0_comps_builtin.vhd
│ │ │ ├── logic_builtin.vhd
│ │ │ └── reset_builtin.vhd
│ │ ├── common
│ │ │ ├── input_blk.vhd
│ │ │ ├── output_blk.vhd
│ │ │ ├── rd_pe_as.vhd
│ │ │ ├── rd_pe_ss.vhd
│ │ │ ├── shft_ram.vhd
│ │ │ ├── shft_wrapper.vhd
│ │ │ ├── synchronizer_ff.vhd
│ │ │ ├── wr_pf_as.vhd
│ │ │ └── wr_pf_ss.vhd
│ │ ├── fifo_generator_top.vhd
│ │ ├── fifo_generator_v12_0_defaults.vhd
│ │ ├── fifo_generator_v12_0_pkg.vhd
│ │ ├── fifo_generator_v12_0_synth.vhd
│ │ ├── fifo_generator_v12_0.vhd
│ │ └── ramfifo
│ │ ├── async_fifo.vhd
│ │ ├── axi_reg_slice.vhd
│ │ ├── bram_fifo_rstlogic.vhd
│ │ ├── bram_sync_reg.vhd
│ │ ├── clk_x_pntrs.vhd
│ │ ├── compare.vhd
│ │ ├── dc_ss_fwft.vhd
│ │ ├── dc_ss.vhd
│ │ ├── dmem.vhd
│ │ ├── fifo_generator_ramfifo.vhd
│ │ ├── logic_sshft.vhd
│ │ ├── memory.vhd
│ │ ├── rd_bin_cntr.vhd
│ │ ├── rd_dc_as.vhd
│ │ ├── rd_dc_fwft_ext_as.vhd
│ │ ├── rd_fwft.vhd
│ │ ├── rd_handshaking_flags.vhd
│ │ ├── rd_logic_pkt_fifo.vhd
│ │ ├── rd_logic.vhd
│ │ ├── rd_pe_sshft.vhd
│ │ ├── rd_status_flags_as.vhd
│ │ ├── rd_status_flags_sshft.vhd
│ │ ├── rd_status_flags_ss.vhd
│ │ ├── reset_blk_ramfifo.vhd
│ │ ├── updn_cntr.vhd
│ │ ├── wr_bin_cntr.vhd
│ │ ├── wr_dc_as.vhd
│ │ ├── wr_dc_fwft_ext_as.vhd
│ │ ├── wr_handshaking_flags.vhd
│ │ ├── wr_logic_pkt_fifo.vhd
│ │ ├── wr_logic.vhd
│ │ ├── wr_pf_sshft.vhd
│ │ ├── wr_status_flags_as.vhd
│ │ ├── wr_status_flags_sshft.vhd
│ │ └── wr_status_flags_ss.vhd
│ ├── generic_baseblocks_v2_1
│ │ └── e185049c
│ │ └── hdl
│ │ └── verilog
│ │ ├── generic_baseblocks_v2_1_carry_and.v
│ │ ├── generic_baseblocks_v2_1_carry_latch_and.v
│ │ ├── generic_baseblocks_v2_1_carry_latch_or.v
│ │ ├── generic_baseblocks_v2_1_carry_or.v
│ │ ├── generic_baseblocks_v2_1_carry.v
│ │ ├── generic_baseblocks_v2_1_command_fifo.v
│ │ ├── generic_baseblocks_v2_1_comparator_mask_static.v
│ │ ├── generic_baseblocks_v2_1_comparator_mask.v
│ │ ├── generic_baseblocks_v2_1_comparator_sel_mask_static.v
│ │ ├── generic_baseblocks_v2_1_comparator_sel_mask.v
│ │ ├── generic_baseblocks_v2_1_comparator_sel_static.v
│ │ ├── generic_baseblocks_v2_1_comparator_sel.v
│ │ ├── generic_baseblocks_v2_1_comparator_static.v
│ │ ├── generic_baseblocks_v2_1_comparator.v
│ │ ├── generic_baseblocks_v2_1_mux_enc.v
│ │ ├── generic_baseblocks_v2_1_mux.v
│ │ └── generic_baseblocks_v2_1_nto1_mux.v
│ ├── interrupt_control_v3_0
│ │ └── 99913152
│ │ └── hdl
│ │ └── src
│ │ └── vhdl
│ │ └── interrupt_control.vhd
│ ├── proc_common_v4_0
│ │ └── bb615326
│ │ └── hdl
│ │ └── src
│ │ └── vhdl
│ │ ├── addsub.vhd
│ │ ├── async_fifo_fg.vhd
│ │ ├── basic_sfifo_fg.vhd
│ │ ├── blk_mem_gen_wrapper.vhd
│ │ ├── cdc_sync.vhd
│ │ ├── cntr_incr_decr_addn_f.vhd
│ │ ├── common_types_pkg.vhd
│ │ ├── compare_vectors_f.vhd
│ │ ├── conv_funs_pkg.vhd
│ │ ├── coregen_comp_defs.vhd
│ │ ├── counter_bit.vhd
│ │ ├── counter_f.vhd
│ │ ├── counter.vhd
│ │ ├── direct_path_cntr_ai.vhd
│ │ ├── direct_path_cntr.vhd
│ │ ├── down_counter.vhd
│ │ ├── dynshreg_f.vhd
│ │ ├── dynshreg_i_f.vhd
│ │ ├── eval_timer.vhd
│ │ ├── family_support.vhd
│ │ ├── family.vhd
│ │ ├── inferred_lut4.vhd
│ │ ├── ipif_mirror128.vhd
│ │ ├── ipif_pkg.vhd
│ │ ├── ipif_steer128.vhd
│ │ ├── ipif_steer.vhd
│ │ ├── ld_arith_reg2.vhd
│ │ ├── ld_arith_reg.vhd
│ │ ├── muxf_struct_f.vhd
│ │ ├── mux_onehot_f.vhd
│ │ ├── mux_onehot.vhd
│ │ ├── or_bits.vhd
│ │ ├── or_gate128.vhd
│ │ ├── or_gate_f.vhd
│ │ ├── or_gate.vhd
│ │ ├── or_muxcy_f.vhd
│ │ ├── or_muxcy.vhd
│ │ ├── or_with_enable_f.vhd
│ │ ├── pf_adder_bit.vhd
│ │ ├── pf_adder.vhd
│ │ ├── pf_counter_bit.vhd
│ │ ├── pf_counter_top.vhd
│ │ ├── pf_counter.vhd
│ │ ├── pf_dpram_select.vhd
│ │ ├── pf_occ_counter_top.vhd
│ │ ├── pf_occ_counter.vhd
│ │ ├── proc_common_pkg.vhd
│ │ ├── pselect_f.vhd
│ │ ├── pselect_mask.vhd
│ │ ├── pselect.vhd
│ │ ├── soft_reset.vhd
│ │ ├── srl16_fifo.vhd
│ │ ├── srl_fifo2.vhd
│ │ ├── srl_fifo3.vhd
│ │ ├── srl_fifo_f.vhd
│ │ ├── srl_fifo_rbu_f.vhd
│ │ ├── srl_fifo_rbu.vhd
│ │ ├── srl_fifo.vhd
│ │ ├── sync_fifo_fg.vhd
│ │ └── valid_be.vhd
│ ├── processing_system7_v5_4
│ │ └── e76c1772
│ │ └── hdl
│ │ └── verilog
│ │ ├── processing_system7_v5_4_atc.v
│ │ ├── processing_system7_v5_4_aw_atc.v
│ │ ├── processing_system7_v5_4_b_atc.v
│ │ ├── processing_system7_v5_4_trace_buffer.v
│ │ └── processing_system7_v5_4_w_atc.v
│ └── proc_sys_reset_v5_0
│ └── 51a8c173
│ └── hdl
│ └── src
│ └── vhdl
│ ├── lpf.vhd
│ ├── proc_sys_reset.vhd
│ ├── sequence.vhd
│ └── upcnt_n.vhd
├── hellozynq.xpr
├── ps_clock_registers.log
├── readme.txt
├── src
│ ├── Marquee.c
│ └── source
│ ├── devicetree.dtb
│ ├── fsbl_zynq.elf
│ ├── u-boot.elf
│ ├── uImage.bin
│ ├── uramdisk.image.gz
│ └── zynq_system_1_wrapper.bit
├── vivado.jou
├── vivado.log
└── ZYNQ开发入门.docx
201 directories, 1140 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论