blob: 4c0019073f47b1be93a9e9cb2e9e693a01fc7377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
program exceptionTest;
{$mode objfpc}
uses
ctypes, nds9;
// The default exception handler displays the exception type - data abort or undefined instruction
// you can relate the exception to your code using arm-eabi-addr2line -e <elf file> <address>
// assuming you built with debug info this will display a source file and a line number
// The address of the instruction is shown as pc, beside the address which faulted
// the rest of the screen is a dump of the registers.
begin
// install the default exception handler
defaultExceptionHandler();
// generate an exception
pu32(8192)^ := 100;
while true do
swiWaitForVBlank();
end.
|