fpc/tests/webtbs/tw32039.pp
florian d0dd3bd74e * patch by Christo Crause to support ~ in att assembler
* allow -128 to 255 as a constant for instructions taking a byte sized constants (this is also what GNU As accepts), resolves #32039

git-svn-id: trunk@38316 -
2018-02-22 20:14:56 +00:00

10 lines
92 B
ObjectPascal

{ %cpu=avr }
{ %norun }
const
foo = %00011000;
begin
asm
andi r16, ~foo
end;
end.