use the locations specified in the bcm2708_boot header
[AROS.git] / test / library / dummytest_auto.c
blob89c5ee739abce2ef7473ff4ea74418b8711653e9
1 /*
2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/exec.h>
7 #include <proto/dos.h>
8 #include <proto/dummy.h>
10 int main (int argc, char ** argv)
12 ULONG a=1,b=2,c=0,d=0;
14 IPTR vec[3];
16 c=add(a,b);
18 d=asl(a,b);
20 vec[0]=a;
21 vec[1]=b;
22 vec[2]=c;
23 VPrintf((STRPTR)"%ld+%ld=%ld\n",vec);
25 vec[0]=a;
26 vec[1]=b;
27 vec[2]=d;
28 VPrintf((STRPTR)"%ld<<%ld=%ld\n",vec);
30 Flush (Output ());
32 return 0;