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 / test / tasm4.pp
Size: Mime:
{ %CPU=x86_64 }
{ %fail }

// AH/BH/CH/DH and x86_64 specific registers cannot be used in a single instruction
{$asmmode att}
procedure test; assembler; nostackframe;
asm
     adcb  %ah, (%r8)
end;

begin
end.