fpc/bugs/bug0011.pp
1998-03-25 11:26:49 +00:00

14 lines
175 B
ObjectPascal

var
vga : array[0..320*200-1] of byte;
procedure test(x,y : longint);
begin
vga[x+y mod 320]:=random(256);
vga[x+y mod 320]:=random(256);
end;
begin
end.