summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw22490a.pp
blob: 202ca894f840e9425e53c6d30c4a1b51c97301ef (plain)
1
2
3
4
5
6
7
8
9
10
11
{ %cpu=i386}
{ %fail }

{$mode objfpc}{$ASMMODE INTEL}
function Test():qword;assembler;nostackframe;
asm
  mov result,1
end;
begin
  writeln(Test());
end.