fpc/tests/webtbs/tw0892.pp
2000-11-30 22:38:14 +00:00

18 lines
230 B
ObjectPascal

{$asmmode intel}
var
i,j : longint;
begin
i:=56;
{ this should work as ss and ds have the same selector value }
asm
segss
mov eax,dword ptr [i]
mov dword ptr [j],eax
end;
if i<>j then
Halt(1);
end.