Code review adaptations, removed "cc65_" prefix from functions
This commit is contained in:
committed by
Oliver Schmidt
parent
435f417c64
commit
3d8c3a4948
25
libsrc/common/umul16x16r32.s
Normal file
25
libsrc/common/umul16x16r32.s
Normal file
@@ -0,0 +1,25 @@
|
||||
;
|
||||
; 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user