Hello
I have checked the Command Window on CodeWarrior for ColdFire V6.4 ( I do not have a V6.3 installation right now).
But anyway it should word in the same way.
If you ask for help on the command debug (help debug) you see following text:
"COMMAND cmdwin::debug - debug a project
SHORTCUT cmdwin::de
SYNTAX DEBUG [project_file(*.mcp) [number of projects]]
EXAMPLES
debug
Debug the opened default project.
debug des.mcp
Open the project des.mcp to debug. "
So that means for ColdFire you need to specify a .mcp file for debugging (You cannot start from a .elf file).
In order to debug an elf file I would recommend to process as follows:
1- create a project for the existing .elf file
2- start debugger.
The corresponding .tcl file looks as follows:
project -o "c:\\code.elf"
debug
I hope this helps.
CrasyCat