Skip to content

debugging on amigaos

astrofra edited this page May 18, 2020 · 1 revision

Debugging on AmigaOS

SAS/C Debugger

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
Clone this wiki locally