Trust uboot's device list only if it does not look suspicious.
[AROS.git] / test / smult.c
blob5cfb0fe7113aebb36a9c80a64f1eb6044ae305aa
2 #include <stdio.h>
4 #include <proto/utility.h>
6 int main(int argc, char **argv)
8 QUAD val;
10 val = SMult64(0x12345678,0xdeadcafe);
11 printf("0x12345678 * 0xdeadcafe = 0x%llx\n", (unsigned long long)val);
13 return 0;