We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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
Looks like a bug. What is actually the content of the CRC.A file? We recommend to use the current Version of the RealView MDK-ARM (download via http://www.keil.com/demo). There is also an assembly language example on: http://www.keil.com/download/docs/314.asp
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