Fix syntax errors
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1491 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
7d2247f00c
commit
bf31ea1816
@ -61,7 +61,7 @@ SECTIONS
|
|||||||
|
|
||||||
/* The "variable" vector table will be fixed at the following address */
|
/* The "variable" vector table will be fixed at the following address */
|
||||||
|
|
||||||
. = 0xffd00
|
. = 0xffd00;
|
||||||
.varvect : {
|
.varvect : {
|
||||||
_svarvect = ABSOLUTE(.);
|
_svarvect = ABSOLUTE(.);
|
||||||
*(.varvect)
|
*(.varvect)
|
||||||
@ -70,14 +70,14 @@ SECTIONS
|
|||||||
|
|
||||||
/* Followed by the special page/fixed vector table. */
|
/* Followed by the special page/fixed vector table. */
|
||||||
|
|
||||||
. = 0xffe00
|
. = 0xffe00;
|
||||||
.specpg : {
|
.specpg : {
|
||||||
_sspecpg = ABSOLUTE(.);
|
_sspecpg = ABSOLUTE(.);
|
||||||
*(.specpg)
|
*(.specpg)
|
||||||
_especpg = ABSOLUTE(.);
|
_especpg = ABSOLUTE(.);
|
||||||
}
|
}
|
||||||
|
|
||||||
. = 0xfffdc
|
. = 0xfffdc;
|
||||||
.fixvect : {
|
.fixvect : {
|
||||||
_sfixvect = ABSOLUTE(.);
|
_sfixvect = ABSOLUTE(.);
|
||||||
*(.fixvect)
|
*(.fixvect)
|
||||||
@ -107,23 +107,22 @@ SECTIONS
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* "Far" RAM begins at 0x10000. The SKP16C26 has no far RAM */
|
/* "Far" RAM begins at 0x10000. The SKP16C26 has no far RAM */
|
||||||
/*
|
|
||||||
. = 0x10000;
|
. = 0x10000;
|
||||||
|
|
||||||
.fdata : {
|
.fdata : {
|
||||||
_sfdata = ABSOLUTE(.);
|
_sfdata = ABSOLUTE(.);
|
||||||
*(.data)
|
*(.fdata)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
_efdata = ABSOLUTE(.);
|
_efdata = ABSOLUTE(.);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fbss : { /* BSS */
|
.fbss : { /* BSS */
|
||||||
_sfbss = ABSOLUTE(.);
|
_sfbss = ABSOLUTE(.);
|
||||||
*(.bss)
|
*(.fbss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
_efbss = ABSOLUTE(.);
|
_efbss = ABSOLUTE(.);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
/* Stabs debugging sections. */
|
/* Stabs debugging sections. */
|
||||||
.stab 0 : { *(.stab) }
|
.stab 0 : { *(.stab) }
|
||||||
.stabstr 0 : { *(.stabstr) }
|
.stabstr 0 : { *(.stabstr) }
|
||||||
|
Loading…
Reference in New Issue
Block a user