use the locations specified in the bcm2708_boot header
[AROS.git] / test / smult.c
blob2fc44a6cb0586aaf12963a39913d42d483949d89
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 #include <proto/utility.h>
10 int main(int argc, char **argv)
12 QUAD val;
14 val = SMult64(0x12345678,0xdeadcafe);
15 printf("0x12345678 * 0xdeadcafe = 0x%llx\n", (unsigned long long)val);
17 return 0;