已解决! 转到解答。
Hello
Basically you first have to decide if you want to build from batch or if you want to use the IDE.
HCS08 tools are all available as stand alone tools, so it is possible to work without IDE if you wish.
To start the debugger just start the hiwave.exe executable stored in directory {Install}\prog. I would recommend to start it with from your current directory.
In order to make sure you can perform source level debugging, you will have to provide some path information to the debugger. I would recommend you to do it the following way:
- Start the debugger
- Load your application (*.abs)
- Select "File" -> "Configuration"
- Activate the "Environment" tab
- Add path to your source file to the "General Path" (actually for assembly source file we need the path to the .dbg file generated by the macro assembler)
- Once this is done, select "File" -> "Save Configuration" and save the configuration in a file called project.ini located in your current directory.
Then you have to decide whether you want to use absolute or relocatable assembly. Both are possible with CodeWarrior Assembler.
To build relocatable code use option -F2.
To build absolute assembly code directly (You do not need a linker then), use option -FA2.
You can also create an absolute assembly project using the IDE. Please look at the attached technical note for more info.
CrasyCat
Hello
Basically you first have to decide if you want to build from batch or if you want to use the IDE.
HCS08 tools are all available as stand alone tools, so it is possible to work without IDE if you wish.
To start the debugger just start the hiwave.exe executable stored in directory {Install}\prog. I would recommend to start it with from your current directory.
In order to make sure you can perform source level debugging, you will have to provide some path information to the debugger. I would recommend you to do it the following way:
- Start the debugger
- Load your application (*.abs)
- Select "File" -> "Configuration"
- Activate the "Environment" tab
- Add path to your source file to the "General Path" (actually for assembly source file we need the path to the .dbg file generated by the macro assembler)
- Once this is done, select "File" -> "Save Configuration" and save the configuration in a file called project.ini located in your current directory.
Then you have to decide whether you want to use absolute or relocatable assembly. Both are possible with CodeWarrior Assembler.
To build relocatable code use option -F2.
To build absolute assembly code directly (You do not need a linker then), use option -FA2.
You can also create an absolute assembly project using the IDE. Please look at the attached technical note for more info.
CrasyCat