fpc/tests/webtbs/tw34409.pp
2019-11-30 20:37:55 +00:00

14 lines
149 B
ObjectPascal

{ %cpu=i386,x86_64 }
{ %norun }
{ %opt=-Rintel -O4 -a }
function foo ( w : word):byte; assembler;
asm
mov ax, w
end;
begin
foo(3);
end.