⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configdai.asm

📁 ADSP与NANDFLASH的连接
💻 ASM
字号:
#include <sru.h>
#include <def21262.h>

// This function will setup the SRU Registers
.section /pm seg_pmco ; 
.global InitSRU ;
InitSRU :

	// Enable pull-up resistors on unused DAI pins
	r0 = 0x7ffff;
	dm(DAI_PIN_PULLUP) = r0;

	//Generating Code for connecting : DAI_PIN20 to MISCA0
	SRU (LOW, PBEN20_I); 
	SRU (DAI_PB20_O, MISCA0_I); 

	// Return back from the subroutine
	rts;
InitSRU.end:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -