在KEIL中编译的时候,提示此处出错:
..\BSP\LPC2378_Flash.scf(14): error: A1355U: A Label was found which was in no AREA
请大家帮忙分析一下出错的原因。谢谢。
;/****************************************************************************
; * mem_rel.scf: Scatter file for Philips LPC230x/240x Family
; * Microprocessors
; *
; * Copyright(C) 2006, Philips Semiconductor
; * All rights reserved.
; *
; * History
; * 2005.10.01 ver 1.00 Prelimnary version, first Release
; *
;*****************************************************************************/
; code loaded to flash 0x00000000 for execution, build for release
ROM_LOAD 0x00000000 ;;出错点定位在这行
{
ROM_EXEC 0x00000000
{
Startup.o (vectors, +First)
* (+RO)
}
IRAM 0x40000000
{
* (+RW,+ZI)
}
HEAP +0 UNINIT
{
Startup.o (Heap)
}
STACKS 0x40008000-0x1800 UNINIT
{
Startup.o (Stacks)
}
} |