10 lines
157 B
Text
10 lines
157 B
Text
|
|
Exponent:
|
||
|
|
;raises D0 to the D1 power. No overflow protection.
|
||
|
|
MOVE.L D0,D2
|
||
|
|
SUBQ.L #1,D1
|
||
|
|
loop_exponent:
|
||
|
|
MULU D0,D2
|
||
|
|
DBRA D1,loop_exponent
|
||
|
|
;output is in D2
|
||
|
|
RTS
|