unit BiosDate;
interfacefunction GetBiosDate: string;
implementationfunction SegOfsToLinear(Segment, Offset: Word): Integer;
begin
result := (Segment shl 4) or Offset;
end;
function GetBiosDate: string;
begin
result := string(PChar(Ptr(SegOfsToLinear($F000, $FFF5))));
end;
end.