mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
14 lines
175 B
ObjectPascal
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.
|
|
|