mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 01:19:35 +02:00
12 lines
118 B
ObjectPascal
12 lines
118 B
ObjectPascal
type
|
|
rec=record
|
|
a : longint;
|
|
end;
|
|
|
|
var
|
|
r1 : rec absolute $40:$49;
|
|
begin
|
|
with r1 do
|
|
a:=1;
|
|
end.
|