mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
fc6a63a15e
3d8c3a4948
caused an unintended "shadowing" of files in /libsrc/runtime by files in /libsrc/common. Therefore the files in question are renamed (again) in /libsrc/common to make the files in /libsrc/runtime "visible" again.
26 lines
474 B
ArmAsm
26 lines
474 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2010-11-03
|
|
;
|
|
; CC65 library: 16x16 => 32 unsigned multiplication
|
|
;
|
|
|
|
.export _umul16x16r32
|
|
.import umul16x16r32, popax
|
|
|
|
.include "zeropage.inc"
|
|
|
|
|
|
;---------------------------------------------------------------------------
|
|
; 16x16 => 32 unsigned multiplication routine.
|
|
|
|
.proc _umul16x16r32
|
|
|
|
sta ptr1
|
|
stx ptr1+1
|
|
jsr popax
|
|
jmp umul16x16r32
|
|
|
|
.endproc
|
|
|
|
|