This website works better with JavaScript.
Home
Explore
Help
Sign In
MNT
/
zz9000-sdk
Watch
2
Star
1
Fork
1
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add linker file, link.ld
pull/1/head
mntmn
1 year ago
parent
15685b7cd9
commit
5e7fdcffce
1 changed files
with
17 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+17
-0
link.ld
+ 17
- 0
link.ld
View File
@@ -0,0 +1,17 @@
SECTIONS
{
. = 0x03000000;
.binstart : {
*(.binstart)
}
.text : {
*(.text)
}
.bss : {
*(.bss)
}
.data : {
*(.data)
}
}
Write
Preview
Loading…
Cancel
Save