summaryrefslogtreecommitdiff
path: root/js/src/lirasm/tests/multfrag2.in
blob: 6a769a964d6933c9eb1a419405440a319f9c54e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.begin sinpibytwo
pi = immd 3.14
half = immd 0.5
halfpi = muld pi half
res = calld sin cdecl halfpi
retd res
.end

.begin main
aa = calld sinpibytwo fastcall
bb = immd 5.53
res = addd aa bb
retd res
.end