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

📄 minios-x86_32.lds

📁 xen虚拟机源代码安装包
💻 LDS
字号:
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")OUTPUT_ARCH(i386)ENTRY(_start)SECTIONS{  . = 0x0;  _text = .;			/* Text and read-only data */  .text : {	*(.text)	*(.gnu.warning)	} = 0x9090  _etext = .;			/* End of text section */  .rodata : { *(.rodata) *(.rodata.*) }  . = ALIGN(4096);  _erodata = .;  /* newlib initialization functions */  . = ALIGN(32 / 8);  PROVIDE (__preinit_array_start = .);  .preinit_array     : { *(.preinit_array) }  PROVIDE (__preinit_array_end = .);  PROVIDE (__init_array_start = .);  .init_array     : { *(.init_array) }  PROVIDE (__init_array_end = .);  PROVIDE (__fini_array_start = .);  .fini_array     : { *(.fini_array) }  PROVIDE (__fini_array_end = .);  .ctors : {        __CTOR_LIST__ = .;        LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)        *(.ctors)	CONSTRUCTORS        LONG(0)        __CTOR_END__ = .;        }  .dtors : {        __DTOR_LIST__ = .;        LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)        *(.dtors)        LONG(0)        __DTOR_END__ = .;        }  .data : {			/* Data */	*(.data)	}  _edata = .;			/* End of data section */  __bss_start = .;		/* BSS */  .bss : {	*(.bss)        *(.app.bss)	}  _end = . ;  /* Sections to be discarded */  /DISCARD/ : {	*(.text.exit)	*(.data.exit)	*(.exitcall.exit)	}  /* Stabs debugging sections.  */  .stab 0 : { *(.stab) }  .stabstr 0 : { *(.stabstr) }  .stab.excl 0 : { *(.stab.excl) }  .stab.exclstr 0 : { *(.stab.exclstr) }  .stab.index 0 : { *(.stab.index) }  .stab.indexstr 0 : { *(.stab.indexstr) }  .comment 0 : { *(.comment) }}

⌨️ 快捷键说明

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