Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbf / tw22665b.pp
Size: Mime:
{ %skiptarget=win64 }
{ %cpu=x86_64 }
{ %opt=-vw -Sew }
{ %fail }

{$asmmode intel}

var
  val: qword; public;

Function Test: QWord; Assembler; NoStackFrame;
Asm
 { global symbols must be accessed via the GOT on non-win64 }
 mov RAX, [RIP+val]
End;

BEGIN
  Val := $12345678901;
  if test<>$12345678901 then
    halt(1);
END.