Avoid unintended file "shadowing".
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.
This commit is contained in:
25
libsrc/common/_imul16x16r32.s
Normal file
25
libsrc/common/_imul16x16r32.s
Normal file
@@ -0,0 +1,25 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2010-11-03
|
||||
;
|
||||
; CC65 library: 16x16 => 32 signed multiplication
|
||||
;
|
||||
|
||||
.export _imul16x16r32
|
||||
.import imul16x16r32, popax
|
||||
|
||||
.include "zeropage.inc"
|
||||
|
||||
|
||||
;---------------------------------------------------------------------------
|
||||
; 16x16 => 32 signed multiplication routine.
|
||||
|
||||
|
||||
.proc _imul16x16r32
|
||||
|
||||
sta ptr1
|
||||
stx ptr1+1
|
||||
jsr popax
|
||||
jmp imul16x16r32
|
||||
|
||||
.endproc
|
||||
|
||||
Reference in New Issue
Block a user