Skip to content
Snippets Groups Projects
Commit bf31ea18 authored by patacongo's avatar patacongo
Browse files

Fix syntax errors

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1491 42af7a65-404d-4744-a932-0658087f49c3
parent 7d2247f0
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ SECTIONS
/* The "variable" vector table will be fixed at the following address */
. = 0xffd00
. = 0xffd00;
.varvect : {
_svarvect = ABSOLUTE(.);
*(.varvect)
......@@ -70,14 +70,14 @@ SECTIONS
/* Followed by the special page/fixed vector table. */
. = 0xffe00
. = 0xffe00;
.specpg : {
_sspecpg = ABSOLUTE(.);
*(.specpg)
_especpg = ABSOLUTE(.);
}
. = 0xfffdc
. = 0xfffdc;
.fixvect : {
_sfixvect = ABSOLUTE(.);
*(.fixvect)
......@@ -107,23 +107,22 @@ SECTIONS
}
/* "Far" RAM begins at 0x10000. The SKP16C26 has no far RAM */
/*
. = 0x10000;
.fdata : {
_sfdata = ABSOLUTE(.);
*(.data)
*(.fdata)
CONSTRUCTORS
_efdata = ABSOLUTE(.);
}
.fbss : { /* BSS */
_sfbss = ABSOLUTE(.);
*(.bss)
*(.fbss)
*(COMMON)
_efbss = ABSOLUTE(.);
}
*/
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment