-
Notifications
You must be signed in to change notification settings - Fork 2
debugging on amigaos
astrofra edited this page May 18, 2020
·
1 revision
SAS/C debugger is known as Codeprobe.
Start Codeprobe from an Amigashell prompt
cd my_project
cpr -startup main.exe
Set a breakpoint from Codeprobe prompt
To set a brealpoint in the function game_update
at line 650:
break game_update 650
Start the execution
go