Memory Overlap Warning in Keil C51

Status
Not open for further replies.

mqazi

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

Cookies are required to use this site. You must accept them to continue using the site. Learn more…