Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Memory Overlap Warning in Keil C51

Status
Not open for further replies.

mqazi

Newbie level 2
Newbie level 2
Joined
Dec 14, 2013
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Visit site
Activity points
9
WARNING L5: CODE SPACE MEMORY OVERLAP in Keil C51

Hi everybody, can anybody tell me how to remove these warnings:
Code:
Rebuild target 'Target 1'
assembling STARTUP.A51...
assembling Test.a51...
linking...
*** WARNING L5: CODE SPACE MEMORY OVERLAP
    FROM:    0000H
    TO:      0002H
*** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
    SYMBOL:  ?C_START
    MODULE:  STARTUP.obj (?C_STARTUP)
*** WARNING L2: REFERENCE MADE TO UNRESOLVED EXTERNAL
    SYMBOL:  ?C_START
    MODULE:  STARTUP.obj (?C_STARTUP)
    ADDRESS: 080AH
Program Size: data=9.0 xdata=0 code=150
"Demo" - 0 Error(s), 3 Warning(s).

Code:
ORG 0000H

LCALL MAIN


ORG 0080H

MAIN:

	CLR A
	MOV A, #02H
	MOV R0, A
	INC R0
	MOV P0, R0
	
END
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top