]> git.gag.com Git - fw/sdcc/commitdiff
src/z80/mappings.i: fix _mul[us][int,long] entries
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 28 Jul 2003 10:09:41 +0000 (10:09 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 28 Jul 2003 10:09:41 +0000 (10:09 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2780 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
src/z80/mappings.i

index f0eac4ecfceebd9a5a5d27cfca76fcdeffcb8756..870fa9d6989d0e5e397559ad2dfe3ce83134f3de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-28  Bernhard Held <bernhard@bernhardheld.de>
+
+       * src/z80/mappings.i: fix _mul[us][int,long] entries
+
 2003-07-26  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
 
     *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
index ed734cecbf7988eda43beb4bc71c09fdb9559c5a..60267bd0c829a4480ba3447c9d5c6b182e3a3f08 100644 (file)
@@ -119,8 +119,7 @@ static const ASM_MAPPING _rgbds_mapping[] = {
       "\t; We have to define these here as sdcc dosnt make them global by default\n"
       "\tGLOBAL __mulschar\n"
       "\tGLOBAL __muluchar\n"
-      "\tGLOBAL __mulsint\n"
-      "\tGLOBAL __muluint\n"
+      "\tGLOBAL __mulint\n"
       "\tGLOBAL __divschar\n"
       "\tGLOBAL __divuchar\n"
       "\tGLOBAL __divsint\n"
@@ -129,7 +128,7 @@ static const ASM_MAPPING _rgbds_mapping[] = {
       "\tGLOBAL __moduchar\n"
       "\tGLOBAL __modsint\n"
       "\tGLOBAL __moduint\n"
-      "\tGLOBAL __mulslong\n"  
+      "\tGLOBAL __mullong\n"  
       "\tGLOBAL __modslong\n"  
       "\tGLOBAL __divslong\n"  
       "\tGLOBAL banked_call\n"
@@ -205,11 +204,10 @@ static const ASM_MAPPING _isas_mapping[] = {
       "\tCAPSOFF      ; Case sensitive\n"
       "\tISDMG        ; Gameboy mode\n"
       "_CODE\tGROUP\n"
-      "\t; We have to define these here as sdcc dosnt make them global by default\n"
+      "\t; We have to define these here as sdcc doesnt make them global by default\n"
       "\tGLOBAL __mulschar\n"
       "\tGLOBAL __muluchar\n"
-      "\tGLOBAL __mulsint\n"
-      "\tGLOBAL __muluint\n"
+      "\tGLOBAL __mulint\n"
       "\tGLOBAL __divschar\n"
       "\tGLOBAL __divuchar\n"
       "\tGLOBAL __divsint\n"
@@ -287,10 +285,8 @@ static const ASM_MAPPING _z80asm_mapping[] = {
         "; Generated using the z80asm/z88 tokens.\n"
         "\tXREF __muluchar_rrx_s\n"
         "\tXREF __mulschar_rrx_s\n"
-        "\tXREF __mulsint_rrx_s\n"
-        "\tXREF __muluint_rrx_s\n"
-        "\tXREF __mululong_rrx_s\n"
-        "\tXREF __mulslong_rrx_s\n"
+        "\tXREF __mulint_rrx_s\n"
+        "\tXREF __mullong_rrx_s\n"
         "\tXREF __divuchar_rrx_s\n"
         "\tXREF __divschar_rrx_s\n"
         "\tXREF __divsint_rrx_s\n"