This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

error while compiling

Hi all,
When I compile my assembly program I am getting the following error.I would like to know the reason for this error and a solution to overcome this.

what does the line below tell?
CLASSES (DATA (0x40000000-0x40003FFF),
CODE (0x0-0x3FFFF), CONST (0x0-0x3FFFF))


Build target 'Target 1'
assembling CRC.a...
linking...
LARM LINKER/LOCATER V2.42 - SN: Eval Version
COPYRIGHT KEIL ELEKTRONIK GmbH 2001 - 2005
@CRC.lnp "CRC.obj"
TO "CRC"
CASE
CLASSES (DATA (0x40000000-0x40003FFF),
CODE (0x0-0x3FFFF), CONST (0x0-0x3FFFF))
*** ERROR L210: I/O ERROR ON INPUT FILE:
EXCEPTION 0021H: PATH OR FILE NOT FOUND
FILE: CRC.obj
Target not created

Parents
  • Well I was trying to intialize 256 values to an array variable.I did it using the follwing statement

    array_a:DD 0,0,0,0,0,0,0,0,likewise up t0 256th location......


    If I commented this line I am not getting the error.

    I would like to know how I could initialize 256 memory location for an array of size 256 (array_a [256]) in ARM assembly language.

    looking for your help

Reply
  • Well I was trying to intialize 256 values to an array variable.I did it using the follwing statement

    array_a:DD 0,0,0,0,0,0,0,0,likewise up t0 256th location......


    If I commented this line I am not getting the error.

    I would like to know how I could initialize 256 memory location for an array of size 256 (array_a [256]) in ARM assembly language.

    looking for your help

Children
No data