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

📄 elf32-littlearm.lds

📁 this is source code of arm9
💻 LDS
字号:
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")OUTPUT_ARCH(arm)ENTRY(reset_handler)/*#include "project.h"*/SECTIONS{	.text : { 		_stext = .;		*(.text)		*(.rodata)                 /* read-only data (constants) */		*(.rodata*)		. = ALIGN(4); 		_etext = . ;	}	/* collect all initialized .data sections that go into FLASH  */	.data : AT ( ADDR (.text) + SIZEOF (.text) ) { 		_sdata = .;		*(.vectors)		*(.data)		_edata = .;	}	/* collect all uninitialized .bss sections that go into FLASH  */	.bss (NOLOAD) : { 		. = ALIGN(4);		_sbss = .;		*(.bss)		_ebss = .;	}}end = .;

⌨️ 快捷键说明

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