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

📄 rtems_crti.s

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 S
字号:
/* rtems_crti.S */#include <asm.h>#include <rtems/score/cpu.h>#include <libcpu/io.h>	/* terminate the __init() function and create	 * a new head '_init' for use by RTEMS to 	 * invoke C++ global constructors	 * NOTE: it is essential that this snippet	 * is hooked between ecrti and crtbegin	 * 	 * ecrti has the following .init section:	 * __init:	 *    stwu r1,-16(r1)	 *    mflr r0	 *    stw  r0,20(r1)	 *	 * The reason for this is that we want to call	 * __eabi() at an early stage but prevent __eabi()	 * from branching to __init (C++ exception init	 * and global CTORs). Hence we make __init a no-op	 * and create a new entry point:	 */	.section ".init","ax"	.align 2	lwz		r0,r20(r1)	mtlr	r0	addi	r1,r1,16	blr	.globl	_init	.type	_init,@function_init:	stwu	r1,-16(r1)	mflr	r0	stw		r0,20(r1)	

⌨️ 快捷键说明

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