Hello Pavel,
Firstly, I open Codewarrior and select "Import" from the File menu.
I select, under General, "Existing Projects into Workspace" and click "Next".
Then I browsed to the directory where the code "Gregory_PA4_PE is located and click "Finish".
I compile and I get the following result
| Description | Resource | Path | Location | Type |
| mingw32-make: *** No rule to make target `C:/Users/B34196/workspace_10.4_KE02/Gregory_PA4_PE/Project_Headers/../Sources/Events.c', needed by `Sources/Events_c.obj'. | Gregory_PA4_PE | | | C/C++ Problem |
Nice.
I understand that the ISR could be an issue. I was trying to show that the project created by codewarrior has the issue without any intervention from me.
Now to exclude spurious interrupts I have changed the code to this.
#include <mc9s08pa4.h>
void main(void) {
PORT_PTBOE = 0x07;
for(;;) {
PORT_PTBD_PTBD1=1;
PORT_PTBD_PTBD1=0;
}
}
I run the code as before. In Debug. Then I try to "Pause" and I get
No source available for "0x0000 (0x0000)() "
The code continues to run as the scope shows that the output is being turned toggled at about 616.5K but I have lost connection with the chip.
This is "VERY" repeatable.

From what I'm seeing I don't think this is anything I'm doing in software. Is there something wrong with my multilink? Is there something wrong with the chip I'm using?
Thank you for your help!