-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.cmd
More file actions
executable file
·36 lines (35 loc) · 843 Bytes
/
app.cmd
File metadata and controls
executable file
·36 lines (35 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
_stack_size = 0x00010000;
_stack = -1;
_heap_size = -1;
ENTRY(ENTRYPOINT)
SECTIONS {
.text 0x01800000: {
obj/crt0.o(.text)
*(.text)
QUAD(0)
}
.reginfo : { KEEP(*(.reginfo)) }
.data ALIGN(128): { *(.data) }
.rodata ALIGN(128): { *(.rodata) }
.rdata ALIGN(128): { *(.rdata) }
.gcc_except_table ALIGN(128): { *(.gcc_except_table) }
_gp = ALIGN(128) + 0x7ff0;
.lit8 ALIGN(128): { *(.lit8) }
.lit4 ALIGN(128): { *(.lit4) }
.sdata ALIGN(128): { *(.sdata) }
.sbss ALIGN(128): { _fbss = .; *(.sbss) *(.scommon) }
.bss ALIGN(128): { *(.bss) }
/*
.stack ALIGN(128)(NOLOAD): {
_stack = .;
. += _stack_size;
}
*/
end = .;
_end = .;
/* _heap_end = . + _heap_size */
.spad 0x70000000: {
obj/crt0.o(.spad)
*(.spad)
}
}