1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/common/_imul8x8r16.s

23 lines
418 B
ArmAsm
Raw Normal View History

;
; 2014-03-27, Oliver Schmidt
; 2014-05-08, Greg King
;
; CC65 library: 8x8 => 16 signed multiplication
;
.export _imul8x8r16
.import imul8x8r16, popa, ptr1:zp
;---------------------------------------------------------------------------
; 8x8 => 16 signed multiplication routine.
.proc _imul8x8r16
sta ptr1
jsr popa
jmp imul8x8r16
.endproc