tw33202.pp 201 B

12345678910
  1. { %CPU=avr }
  2. { %OPT=-Sm }
  3. program macrotest;
  4. const
  5. sramMax = FPC_SRAMBASE + FPC_SRAMSIZE - 1;
  6. begin
  7. asm
  8. sts sramMax , r31 // macrotest.pp(13,16) Error: Constant value out of bounds
  9. end;
  10. end.