mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:07:56 +02:00
11 lines
211 B
ObjectPascal
11 lines
211 B
ObjectPascal
{ %CPU=avr }
|
|
{ %OPT=-Sm -Wpavrsim }
|
|
program macrotest;
|
|
const
|
|
sramMax = FPC_SRAMBASE + FPC_SRAMSIZE - 1;
|
|
begin
|
|
asm
|
|
sts sramMax , r31 // macrotest.pp(13,16) Error: Constant value out of bounds
|
|
end;
|
|
end.
|