📄 nucload.ld
字号:
SECTIONS
{
. = 0x00000500;
.text : {
*(.head)
. = ALIGN(64); /* cache line align */
*(.text)
. = ALIGN(64); /* cache line align */
*(.data)
*(.rodata)
. = ALIGN(64); /* cache line align */
___bss_st = .;
*(.bss)
*(COMMON)
}
.data : {
___allocator_start = .;
. = ALIGN(0xfc00); /* 1K buffer at top of memory */
___stack_bottom = .;
___load_buffer_1KB = .;
___bss_en = .;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -