mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
12 lines
206 B
ObjectPascal
12 lines
206 B
ObjectPascal
{ %target=linux }
|
|
{ %cpu=arm }
|
|
{ %norun }
|
|
{ %opt=-Cparmv7m -s }
|
|
|
|
{ we don't assemble, link and run because we cannot check if the different arm architectures really match }
|
|
begin
|
|
asm
|
|
mrs r0, psp
|
|
end;
|
|
end.
|