summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw8321.pp
blob: 628b7a3c8575d9c7c22489a428a9ee8fa30f13f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var
 A: byte;
 w : word;
 B,B2: cardinal;
 s  : string;
 p : pointer;
 err : boolean;
begin
 B := $ffffffed;
 B2 := $fffffffd;
  p:=POinter(B-B2);
 Str(B-B2,s);
 writeln(s);
 if s<>'-16' then
   err:=true;

 W:=65535;
 A:=20;
 Str(a * w - 256000000,s);
 p:=POinter(a * w - 256000000);
 writeln(s);
{$ifdef cpu64}
 if s<>'18446744073454862316' then
{$else cpu64}
 if s<>'-254689300' then
{$endif cpu64}
  err:=true;


  if err then
    halt(1);
    
end.