]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/imul8x8r16.s
Avoid unintended file "shadowing".
[cc65] / libsrc / common / imul8x8r16.s
diff --git a/libsrc/common/imul8x8r16.s b/libsrc/common/imul8x8r16.s
deleted file mode 100644 (file)
index 9987f6e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-;
-; 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