mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
20 lines
234 B
ObjectPascal
20 lines
234 B
ObjectPascal
{ %cpu=i386 }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
procedure SetBitBuffer(var Value; const Bit: Cardinal);
|
|
asm
|
|
BTS [Value], Bit
|
|
end;
|
|
|
|
var
|
|
l: longint;
|
|
begin
|
|
l := 0;
|
|
setbitbuffer(l,5);
|
|
if (l <> 32) then
|
|
halt(1);
|
|
end.
|