2015-06-28 08:10:45 +08:00
|
|
|
/*
|
|
|
|
This is free and unencumbered software released into the public domain.
|
|
|
|
|
|
|
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
|
|
distribute this software, either in source code form or as a compiled
|
|
|
|
binary, for any purpose, commercial or non-commercial, and by any
|
|
|
|
means.
|
|
|
|
*/
|
|
|
|
|
2015-06-06 20:01:37 +08:00
|
|
|
SECTIONS {
|
|
|
|
.memory : {
|
|
|
|
. = 0x000000;
|
|
|
|
start*(.text);
|
|
|
|
*(.text);
|
|
|
|
*(*);
|
|
|
|
end = .;
|
|
|
|
}
|
|
|
|
}
|