fpc/tests/webtbs/tw4150.pp
Jonas Maebe 32a3f9ce28 + added
git-svn-id: trunk@558 -
2005-07-02 12:35:51 +00:00

12 lines
142 B
ObjectPascal

{$mode objfpc}{$r+}{$q+}
var
Prec:Cardinal;
Bits:Word;
begin
Bits := 512;
Prec := 8;
Bits := Bits shr (16-Prec);
WriteLn(bits);
end.