在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 使用VIvado14.1SDK配置ZYNQ7000双核无操作系统通讯

使用VIvado14.1SDK配置ZYNQ7000双核无操作系统通讯

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:7.54M
  • 下载次数:2
  • 浏览次数:115
  • 发布时间:2021-11-17
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
通过最新Xilinx的Vivado14.1实现了ZYNQ7000双核通讯 资源缺陷:该工程生成的amp_fsbl.elf不能正常使用(用ISE14.7的SDK编辑即可使用)
【实例截图】
【核心代码】
4744302543376500041.rar
└── Vivado14.1SDK
├── outbin
│   ├── amp_fsbl.elf
│   ├── app_cpu0.elf
│   ├── app_cpu1.elf
│   ├── BOOT.bin
│   ├── bootfpga.bit
│   ├── bootimage.bif
│   ├── cpu1_bootvec.bin
│   └── createBoot.bat
├── project_3.sdk
│   └── SDK
│   └── SDK_Export
│   ├── amp_fsbl
│   │   ├── Debug
│   │   │   ├── amp_fsbl.elf
│   │   │   ├── amp_fsbl.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
│   │   │   ├── 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
│   │   │   ├── 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
│   │   ├── mmc.c
│   │   ├── nand.c
│   │   ├── nand.h
│   │   ├── nor.c
│   │   ├── nor.h
│   │   ├── pcap.c
│   │   ├── pcap.h
│   │   ├── ps7_init.c
│   │   ├── ps7_init.h
│   │   ├── qspi.c
│   │   ├── qspi.h
│   │   ├── sd.c
│   │   ├── sd.h
│   │   └── sd_hardware.h
│   ├── amp_fsbl_bsp
│   │   ├── Makefile
│   │   ├── ps7_cortexa9_0
│   │   │   ├── code
│   │   │   ├── include
│   │   │   │   ├── bspconfig.h
│   │   │   │   ├── diskio.h
│   │   │   │   ├── ffconf.h
│   │   │   │   ├── ff.h
│   │   │   │   ├── integer.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
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_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_standalone.h
│   │   │   │   ├── xgpio.h
│   │   │   │   ├── xgpio_l.h
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_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
│   │   │   │   ├── 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
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.h
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xuartps.h
│   │   │   │   ├── xuartps_hw.h
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps.h
│   │   │   │   └── xusbps_hw.h
│   │   │   ├── lib
│   │   │   │   ├── libxil.a
│   │   │   │   └── libxilffs.a
│   │   │   └── libsrc
│   │   │   ├── canps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xcanps.c
│   │   │   │   ├── xcanps_g.c
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_hw.c
│   │   │   │   ├── xcanps_hw.h
│   │   │   │   ├── xcanps_intr.c
│   │   │   │   ├── xcanps_selftest.c
│   │   │   │   └── xcanps_sinit.c
│   │   │   ├── cpu_cortexa9_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   └── xcpu_cortexa9.h
│   │   │   ├── devcfg_v3_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xdmaps.c
│   │   │   │   ├── xdmaps_g.c
│   │   │   │   ├── xdmaps.h
│   │   │   │   ├── xdmaps_hw.c
│   │   │   │   ├── xdmaps_hw.h
│   │   │   │   ├── xdmaps_selftest.c
│   │   │   │   └── xdmaps_sinit.c
│   │   │   ├── emacps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xemacps_bd.h
│   │   │   │   ├── xemacps_bdring.c
│   │   │   │   ├── xemacps_bdring.h
│   │   │   │   ├── xemacps.c
│   │   │   │   ├── xemacps_control.c
│   │   │   │   ├── xemacps_g.c
│   │   │   │   ├── xemacps.h
│   │   │   │   ├── xemacps_hw.c
│   │   │   │   ├── xemacps_hw.h
│   │   │   │   ├── xemacps_intr.c
│   │   │   │   └── xemacps_sinit.c
│   │   │   ├── generic_v2_0
│   │   │   │   └── src
│   │   │   ├── gpiops_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xgpiops.c
│   │   │   │   ├── xgpiops_g.c
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.c
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xgpiops_intr.c
│   │   │   │   ├── xgpiops_selftest.c
│   │   │   │   └── xgpiops_sinit.c
│   │   │   ├── gpio_v4_0
│   │   │   │   └── 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
│   │   │   ├── iicps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xiicps.c
│   │   │   │   ├── xiicps_g.c
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_hw.c
│   │   │   │   ├── xiicps_hw.h
│   │   │   │   ├── xiicps_intr.c
│   │   │   │   ├── xiicps_master.c
│   │   │   │   ├── xiicps_options.c
│   │   │   │   ├── xiicps_selftest.c
│   │   │   │   ├── xiicps_sinit.c
│   │   │   │   └── xiicps_slave.c
│   │   │   ├── qspips_v3_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xqspips.c
│   │   │   │   ├── xqspips_g.c
│   │   │   │   ├── xqspips.h
│   │   │   │   ├── xqspips_hw.c
│   │   │   │   ├── xqspips_hw.h
│   │   │   │   ├── xqspips_options.c
│   │   │   │   ├── xqspips_selftest.c
│   │   │   │   └── xqspips_sinit.c
│   │   │   ├── scugic_v2_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscutimer.c
│   │   │   │   ├── xscutimer_g.c
│   │   │   │   ├── xscutimer.h
│   │   │   │   ├── xscutimer_hw.h
│   │   │   │   ├── xscutimer_selftest.c
│   │   │   │   └── xscutimer_sinit.c
│   │   │   ├── scuwdt_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscuwdt.c
│   │   │   │   ├── xscuwdt_g.c
│   │   │   │   ├── xscuwdt.h
│   │   │   │   ├── xscuwdt_hw.h
│   │   │   │   ├── xscuwdt_selftest.c
│   │   │   │   └── xscuwdt_sinit.c
│   │   │   ├── sdps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xsdps.c
│   │   │   │   ├── xsdps_g.c
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xsdps_options.c
│   │   │   │   └── xsdps_sinit.c
│   │   │   ├── standalone_v4_0
│   │   │   │   └── 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
│   │   │   │   ├── 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
│   │   │   │   ├── 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
│   │   │   ├── ttcps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xttcps.c
│   │   │   │   ├── xttcps_g.c
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xttcps_options.c
│   │   │   │   ├── xttcps_selftest.c
│   │   │   │   └── xttcps_sinit.c
│   │   │   ├── uartps_v2_0
│   │   │   │   └── 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_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xusbps.c
│   │   │   │   ├── xusbps_endpoint.c
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps_g.c
│   │   │   │   ├── xusbps.h
│   │   │   │   ├── xusbps_hw.c
│   │   │   │   ├── xusbps_hw.h
│   │   │   │   ├── xusbps_intr.c
│   │   │   │   └── xusbps_sinit.c
│   │   │   ├── xadcps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xadcps.c
│   │   │   │   ├── xadcps_g.c
│   │   │   │   ├── xadcps.h
│   │   │   │   ├── xadcps_hw.h
│   │   │   │   ├── xadcps_intr.c
│   │   │   │   ├── xadcps_selftest.c
│   │   │   │   └── xadcps_sinit.c
│   │   │   └── xilffs_v2_0
│   │   │   └── src
│   │   │   ├── diskio.c
│   │   │   ├── ff.c
│   │   │   ├── include
│   │   │   │   ├── diskio.h
│   │   │   │   ├── ffconf.h
│   │   │   │   ├── ff.h
│   │   │   │   └── integer.h
│   │   │   └── Makefile
│   │   └── system.mss
│   ├── app_cpu0
│   │   ├── Debug
│   │   │   ├── app_cpu0.elf
│   │   │   ├── app_cpu0.elf.size
│   │   │   ├── makefile
│   │   │   ├── objects.mk
│   │   │   ├── sources.mk
│   │   │   └── src
│   │   │   ├── helloworld.d
│   │   │   ├── helloworld.o
│   │   │   ├── platform.d
│   │   │   ├── platform.o
│   │   │   └── subdir.mk
│   │   └── src
│   │   ├── helloworld.c
│   │   ├── lscript.ld
│   │   ├── platform.c
│   │   ├── platform_config.h
│   │   └── platform.h
│   ├── app_cpu0_bsp
│   │   ├── 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
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_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_standalone.h
│   │   │   │   ├── xgpio.h
│   │   │   │   ├── xgpio_l.h
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_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
│   │   │   │   ├── 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
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.h
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xuartps.h
│   │   │   │   ├── xuartps_hw.h
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps.h
│   │   │   │   └── xusbps_hw.h
│   │   │   ├── lib
│   │   │   │   └── libxil.a
│   │   │   └── libsrc
│   │   │   ├── canps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xcanps.c
│   │   │   │   ├── xcanps_g.c
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_hw.c
│   │   │   │   ├── xcanps_hw.h
│   │   │   │   ├── xcanps_intr.c
│   │   │   │   ├── xcanps_selftest.c
│   │   │   │   └── xcanps_sinit.c
│   │   │   ├── cpu_cortexa9_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   └── xcpu_cortexa9.h
│   │   │   ├── devcfg_v3_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xdmaps.c
│   │   │   │   ├── xdmaps_g.c
│   │   │   │   ├── xdmaps.h
│   │   │   │   ├── xdmaps_hw.c
│   │   │   │   ├── xdmaps_hw.h
│   │   │   │   ├── xdmaps_selftest.c
│   │   │   │   └── xdmaps_sinit.c
│   │   │   ├── emacps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xemacps_bd.h
│   │   │   │   ├── xemacps_bdring.c
│   │   │   │   ├── xemacps_bdring.h
│   │   │   │   ├── xemacps.c
│   │   │   │   ├── xemacps_control.c
│   │   │   │   ├── xemacps_g.c
│   │   │   │   ├── xemacps.h
│   │   │   │   ├── xemacps_hw.c
│   │   │   │   ├── xemacps_hw.h
│   │   │   │   ├── xemacps_intr.c
│   │   │   │   └── xemacps_sinit.c
│   │   │   ├── generic_v2_0
│   │   │   │   └── src
│   │   │   ├── gpiops_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xgpiops.c
│   │   │   │   ├── xgpiops_g.c
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.c
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xgpiops_intr.c
│   │   │   │   ├── xgpiops_selftest.c
│   │   │   │   └── xgpiops_sinit.c
│   │   │   ├── gpio_v4_0
│   │   │   │   └── 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
│   │   │   ├── iicps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xiicps.c
│   │   │   │   ├── xiicps_g.c
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_hw.c
│   │   │   │   ├── xiicps_hw.h
│   │   │   │   ├── xiicps_intr.c
│   │   │   │   ├── xiicps_master.c
│   │   │   │   ├── xiicps_options.c
│   │   │   │   ├── xiicps_selftest.c
│   │   │   │   ├── xiicps_sinit.c
│   │   │   │   └── xiicps_slave.c
│   │   │   ├── qspips_v3_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xqspips.c
│   │   │   │   ├── xqspips_g.c
│   │   │   │   ├── xqspips.h
│   │   │   │   ├── xqspips_hw.c
│   │   │   │   ├── xqspips_hw.h
│   │   │   │   ├── xqspips_options.c
│   │   │   │   ├── xqspips_selftest.c
│   │   │   │   └── xqspips_sinit.c
│   │   │   ├── scugic_v2_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscutimer.c
│   │   │   │   ├── xscutimer_g.c
│   │   │   │   ├── xscutimer.h
│   │   │   │   ├── xscutimer_hw.h
│   │   │   │   ├── xscutimer_selftest.c
│   │   │   │   └── xscutimer_sinit.c
│   │   │   ├── scuwdt_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscuwdt.c
│   │   │   │   ├── xscuwdt_g.c
│   │   │   │   ├── xscuwdt.h
│   │   │   │   ├── xscuwdt_hw.h
│   │   │   │   ├── xscuwdt_selftest.c
│   │   │   │   └── xscuwdt_sinit.c
│   │   │   ├── sdps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xsdps.c
│   │   │   │   ├── xsdps_g.c
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xsdps_options.c
│   │   │   │   └── xsdps_sinit.c
│   │   │   ├── standalone_v4_0
│   │   │   │   └── 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
│   │   │   │   ├── 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
│   │   │   │   ├── 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
│   │   │   ├── ttcps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xttcps.c
│   │   │   │   ├── xttcps_g.c
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xttcps_options.c
│   │   │   │   ├── xttcps_selftest.c
│   │   │   │   └── xttcps_sinit.c
│   │   │   ├── uartps_v2_0
│   │   │   │   └── 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_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xusbps.c
│   │   │   │   ├── xusbps_endpoint.c
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps_g.c
│   │   │   │   ├── xusbps.h
│   │   │   │   ├── xusbps_hw.c
│   │   │   │   ├── xusbps_hw.h
│   │   │   │   ├── xusbps_intr.c
│   │   │   │   └── xusbps_sinit.c
│   │   │   └── xadcps_v2_0
│   │   │   └── src
│   │   │   ├── Makefile
│   │   │   ├── xadcps.c
│   │   │   ├── xadcps_g.c
│   │   │   ├── xadcps.h
│   │   │   ├── xadcps_hw.h
│   │   │   ├── xadcps_intr.c
│   │   │   ├── xadcps_selftest.c
│   │   │   └── xadcps_sinit.c
│   │   └── system.mss
│   ├── app_cpu1
│   │   ├── Debug
│   │   │   ├── app_cpu1.elf
│   │   │   ├── app_cpu1.elf.size
│   │   │   ├── makefile
│   │   │   ├── objects.mk
│   │   │   ├── sources.mk
│   │   │   └── src
│   │   │   ├── helloworld.d
│   │   │   ├── helloworld.o
│   │   │   ├── platform.d
│   │   │   ├── platform.o
│   │   │   └── subdir.mk
│   │   └── src
│   │   ├── helloworld.c
│   │   ├── lscript.ld
│   │   ├── platform.c
│   │   ├── platform_config.h
│   │   └── platform.h
│   ├── app_cpu1_bsp
│   │   ├── Makefile
│   │   ├── ps7_cortexa9_1
│   │   │   ├── 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
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_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_standalone.h
│   │   │   │   ├── xgpio.h
│   │   │   │   ├── xgpio_l.h
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_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
│   │   │   │   ├── 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
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.h
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xuartps.h
│   │   │   │   ├── xuartps_hw.h
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps.h
│   │   │   │   └── xusbps_hw.h
│   │   │   ├── lib
│   │   │   │   └── libxil.a
│   │   │   └── libsrc
│   │   │   ├── canps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xcanps.c
│   │   │   │   ├── xcanps_g.c
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_hw.c
│   │   │   │   ├── xcanps_hw.h
│   │   │   │   ├── xcanps_intr.c
│   │   │   │   ├── xcanps_selftest.c
│   │   │   │   └── xcanps_sinit.c
│   │   │   ├── cpu_cortexa9_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   └── xcpu_cortexa9.h
│   │   │   ├── devcfg_v3_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xdmaps.c
│   │   │   │   ├── xdmaps_g.c
│   │   │   │   ├── xdmaps.h
│   │   │   │   ├── xdmaps_hw.c
│   │   │   │   ├── xdmaps_hw.h
│   │   │   │   ├── xdmaps_selftest.c
│   │   │   │   └── xdmaps_sinit.c
│   │   │   ├── emacps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xemacps_bd.h
│   │   │   │   ├── xemacps_bdring.c
│   │   │   │   ├── xemacps_bdring.h
│   │   │   │   ├── xemacps.c
│   │   │   │   ├── xemacps_control.c
│   │   │   │   ├── xemacps_g.c
│   │   │   │   ├── xemacps.h
│   │   │   │   ├── xemacps_hw.c
│   │   │   │   ├── xemacps_hw.h
│   │   │   │   ├── xemacps_intr.c
│   │   │   │   └── xemacps_sinit.c
│   │   │   ├── generic_v2_0
│   │   │   │   └── src
│   │   │   ├── gpiops_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xgpiops.c
│   │   │   │   ├── xgpiops_g.c
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.c
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xgpiops_intr.c
│   │   │   │   ├── xgpiops_selftest.c
│   │   │   │   └── xgpiops_sinit.c
│   │   │   ├── gpio_v4_0
│   │   │   │   └── 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
│   │   │   ├── iicps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xiicps.c
│   │   │   │   ├── xiicps_g.c
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_hw.c
│   │   │   │   ├── xiicps_hw.h
│   │   │   │   ├── xiicps_intr.c
│   │   │   │   ├── xiicps_master.c
│   │   │   │   ├── xiicps_options.c
│   │   │   │   ├── xiicps_selftest.c
│   │   │   │   ├── xiicps_sinit.c
│   │   │   │   └── xiicps_slave.c
│   │   │   ├── qspips_v3_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xqspips.c
│   │   │   │   ├── xqspips_g.c
│   │   │   │   ├── xqspips.h
│   │   │   │   ├── xqspips_hw.c
│   │   │   │   ├── xqspips_hw.h
│   │   │   │   ├── xqspips_options.c
│   │   │   │   ├── xqspips_selftest.c
│   │   │   │   └── xqspips_sinit.c
│   │   │   ├── scugic_v2_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscutimer.c
│   │   │   │   ├── xscutimer_g.c
│   │   │   │   ├── xscutimer.h
│   │   │   │   ├── xscutimer_hw.h
│   │   │   │   ├── xscutimer_selftest.c
│   │   │   │   └── xscutimer_sinit.c
│   │   │   ├── scuwdt_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscuwdt.c
│   │   │   │   ├── xscuwdt_g.c
│   │   │   │   ├── xscuwdt.h
│   │   │   │   ├── xscuwdt_hw.h
│   │   │   │   ├── xscuwdt_selftest.c
│   │   │   │   └── xscuwdt_sinit.c
│   │   │   ├── sdps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xsdps.c
│   │   │   │   ├── xsdps_g.c
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xsdps_options.c
│   │   │   │   └── xsdps_sinit.c
│   │   │   ├── standalone_v4_0
│   │   │   │   └── 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
│   │   │   │   ├── 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
│   │   │   │   ├── 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
│   │   │   ├── ttcps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xttcps.c
│   │   │   │   ├── xttcps_g.c
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xttcps_options.c
│   │   │   │   ├── xttcps_selftest.c
│   │   │   │   └── xttcps_sinit.c
│   │   │   ├── uartps_v2_0
│   │   │   │   └── 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_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xusbps.c
│   │   │   │   ├── xusbps_endpoint.c
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps_g.c
│   │   │   │   ├── xusbps.h
│   │   │   │   ├── xusbps_hw.c
│   │   │   │   ├── xusbps_hw.h
│   │   │   │   ├── xusbps_intr.c
│   │   │   │   └── xusbps_sinit.c
│   │   │   └── xadcps_v2_0
│   │   │   └── src
│   │   │   ├── Makefile
│   │   │   ├── xadcps.c
│   │   │   ├── xadcps_g.c
│   │   │   ├── xadcps.h
│   │   │   ├── xadcps_hw.h
│   │   │   ├── xadcps_intr.c
│   │   │   ├── xadcps_selftest.c
│   │   │   └── xadcps_sinit.c
│   │   └── system.mss
│   ├── app_cpu1_bsp1
│   │   ├── Makefile
│   │   ├── ps7_cortexa9_1
│   │   │   ├── 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
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_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_standalone.h
│   │   │   │   ├── xgpio.h
│   │   │   │   ├── xgpio_l.h
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_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
│   │   │   │   ├── 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
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.h
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xuartps.h
│   │   │   │   ├── xuartps_hw.h
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps.h
│   │   │   │   └── xusbps_hw.h
│   │   │   ├── lib
│   │   │   │   └── libxil.a
│   │   │   └── libsrc
│   │   │   ├── canps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xcanps.c
│   │   │   │   ├── xcanps_g.c
│   │   │   │   ├── xcanps.h
│   │   │   │   ├── xcanps_hw.c
│   │   │   │   ├── xcanps_hw.h
│   │   │   │   ├── xcanps_intr.c
│   │   │   │   ├── xcanps_selftest.c
│   │   │   │   └── xcanps_sinit.c
│   │   │   ├── cpu_cortexa9_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   └── xcpu_cortexa9.h
│   │   │   ├── devcfg_v3_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xdmaps.c
│   │   │   │   ├── xdmaps_g.c
│   │   │   │   ├── xdmaps.h
│   │   │   │   ├── xdmaps_hw.c
│   │   │   │   ├── xdmaps_hw.h
│   │   │   │   ├── xdmaps_selftest.c
│   │   │   │   └── xdmaps_sinit.c
│   │   │   ├── emacps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xemacps_bd.h
│   │   │   │   ├── xemacps_bdring.c
│   │   │   │   ├── xemacps_bdring.h
│   │   │   │   ├── xemacps.c
│   │   │   │   ├── xemacps_control.c
│   │   │   │   ├── xemacps_g.c
│   │   │   │   ├── xemacps.h
│   │   │   │   ├── xemacps_hw.c
│   │   │   │   ├── xemacps_hw.h
│   │   │   │   ├── xemacps_intr.c
│   │   │   │   └── xemacps_sinit.c
│   │   │   ├── generic_v2_0
│   │   │   │   └── src
│   │   │   ├── gpiops_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xgpiops.c
│   │   │   │   ├── xgpiops_g.c
│   │   │   │   ├── xgpiops.h
│   │   │   │   ├── xgpiops_hw.c
│   │   │   │   ├── xgpiops_hw.h
│   │   │   │   ├── xgpiops_intr.c
│   │   │   │   ├── xgpiops_selftest.c
│   │   │   │   └── xgpiops_sinit.c
│   │   │   ├── gpio_v4_0
│   │   │   │   └── 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
│   │   │   ├── iicps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xiicps.c
│   │   │   │   ├── xiicps_g.c
│   │   │   │   ├── xiicps.h
│   │   │   │   ├── xiicps_hw.c
│   │   │   │   ├── xiicps_hw.h
│   │   │   │   ├── xiicps_intr.c
│   │   │   │   ├── xiicps_master.c
│   │   │   │   ├── xiicps_options.c
│   │   │   │   ├── xiicps_selftest.c
│   │   │   │   ├── xiicps_sinit.c
│   │   │   │   └── xiicps_slave.c
│   │   │   ├── qspips_v3_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xqspips.c
│   │   │   │   ├── xqspips_g.c
│   │   │   │   ├── xqspips.h
│   │   │   │   ├── xqspips_hw.c
│   │   │   │   ├── xqspips_hw.h
│   │   │   │   ├── xqspips_options.c
│   │   │   │   ├── xqspips_selftest.c
│   │   │   │   └── xqspips_sinit.c
│   │   │   ├── scugic_v2_0
│   │   │   │   └── 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_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscutimer.c
│   │   │   │   ├── xscutimer_g.c
│   │   │   │   ├── xscutimer.h
│   │   │   │   ├── xscutimer_hw.h
│   │   │   │   ├── xscutimer_selftest.c
│   │   │   │   └── xscutimer_sinit.c
│   │   │   ├── scuwdt_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xscuwdt.c
│   │   │   │   ├── xscuwdt_g.c
│   │   │   │   ├── xscuwdt.h
│   │   │   │   ├── xscuwdt_hw.h
│   │   │   │   ├── xscuwdt_selftest.c
│   │   │   │   └── xscuwdt_sinit.c
│   │   │   ├── sdps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xsdps.c
│   │   │   │   ├── xsdps_g.c
│   │   │   │   ├── xsdps.h
│   │   │   │   ├── xsdps_hw.h
│   │   │   │   ├── xsdps_options.c
│   │   │   │   └── xsdps_sinit.c
│   │   │   ├── standalone_v4_0
│   │   │   │   └── 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.c
│   │   │   │   ├── smc.h
│   │   │   │   ├── translation_table.s
│   │   │   │   ├── uart.c
│   │   │   │   ├── 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
│   │   │   │   ├── xpm_counter.c
│   │   │   │   ├── xpm_counter.h
│   │   │   │   ├── xpseudo_asm_gcc.h
│   │   │   │   ├── xpseudo_asm.h
│   │   │   │   ├── xreg_cortexa9.h
│   │   │   │   ├── xstatus.h
│   │   │   │   ├── xtime_l.c
│   │   │   │   └── xtime_l.h
│   │   │   ├── ttcps_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xttcps.c
│   │   │   │   ├── xttcps_g.c
│   │   │   │   ├── xttcps.h
│   │   │   │   ├── xttcps_hw.h
│   │   │   │   ├── xttcps_options.c
│   │   │   │   ├── xttcps_selftest.c
│   │   │   │   └── xttcps_sinit.c
│   │   │   ├── uartps_v2_0
│   │   │   │   └── 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_v2_0
│   │   │   │   └── src
│   │   │   │   ├── Makefile
│   │   │   │   ├── xusbps.c
│   │   │   │   ├── xusbps_endpoint.c
│   │   │   │   ├── xusbps_endpoint.h
│   │   │   │   ├── xusbps_g.c
│   │   │   │   ├── xusbps.h
│   │   │   │   ├── xusbps_hw.c
│   │   │   │   ├── xusbps_hw.h
│   │   │   │   ├── xusbps_intr.c
│   │   │   │   └── xusbps_sinit.c
│   │   │   └── xadcps_v2_0
│   │   │   └── 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
│   │   ├── design_1_wrapper.bit
│   │   ├── ps7_init.c
│   │   ├── ps7_init.h
│   │   ├── ps7_init.html
│   │   ├── ps7_init.tcl
│   │   ├── ps7_summary.html
│   │   └── system.xml
│   ├── RemoteSystemsTempFiles
│   └── SDK.log
├── RemoteSystemsTempFiles
└── SDK.log

204 directories, 1524 files

标签:

实例下载地址

使用VIvado14.1SDK配置ZYNQ7000双核无操作系统通讯

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警