Hi, I am trying to generate a detailed memory map from just a .out file. I need all the detail exactly like the map that comes out of the linker with -m. Changes have been made to the original source code hence I am trying to generate this original map from just the original .out. Recompiling it is therefore not an option (that I am aware of). It doesn't look like the cl2000 linker can have a .out as an input. I have tried using hex2000.exe with its --map==test.map but it only produces a summary of the memory map. Basically it only lists sections but not the individual object files and functions (with their location and size). Is there any known method or trick that I can use? Are there some switches or options that I am missing on the hex2000 command?
hex2000.exe --map=test.map -i test.out -o test.hex -order MS -romwidth 16
thanks