repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
timer.device: Use AROS_UFIx() macros
[AROS.git]
/
test
/
smult.c
blob
5cfb0fe7113aebb36a9c80a64f1eb6044ae305aa
1
2
#include <stdio.h>
3
4
#include <proto/utility.h>
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
QUAD val
;
9
10
val
=
SMult64
(
0x12345678
,
0xdeadcafe
);
11
printf
(
"0x12345678 * 0xdeadcafe = 0x%llx
\n
"
, (
unsigned long long
)
val
);
12
13
return
0
;
14
}