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

📄 init.s

📁 该驱动程序是针对2410开发板的LED灯的驱动
💻 S
字号:
/* * Name	: init.s * Disc	: initial the environment * 2007-07-30 by Qingmin Liu */@ stack size@ it should be less than 4KBytes.equ stack_top, 0x1000@ WDT register.equ WTCON,	0x53000000.text.global _start_start:	@ disable watch dog timer	mov r0, #WTCON	mov r1, #0x0	str r1, [r0]	@ setup the stack	ldr sp, =stack_top	@ jump to C code entry main, and it should be 	@ supported by stack. Therefore, you must setup	@ the stack.	bl mainstop:	b stop.end

⌨️ 快捷键说明

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