2005-03-01 04:58 AM
2005-03-01 03:43 AM
Hi
Just starting a new project, I have downloaded the new ST7 Visual Delelopment package V 3.1.1 with the included device asm & inc files. I notice the memory mapping i.e. segment byte at 80-BF 'ram0' is now not in the device asm file. How or where in this new enviroment do you define ram0 ect. Regards Brian2005-03-01 04:58 AM
anywhere you would like - st have removed the section info from the new headers, eg.
in the main asm file (flite09 example) ; declare code/data segments segment byte at 80-BF 'ram0' segment byte at FA00-FFDF 'rom' WORDS segment 'rom' .main nop jra main Regards sjo