Added space after function name.

This commit is contained in:
IrgendwerA8
2019-03-29 22:47:42 +01:00
committed by Oliver Schmidt
parent 3d8c3a4948
commit df80d071e8
2 changed files with 4 additions and 4 deletions

View File

@@ -5565,7 +5565,7 @@ memory allocated for the driver.
<descrip> <descrip>
<tag/Function/Multiplies argument by 20. <tag/Function/Multiplies argument by 20.
<tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/ <tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/
<tag/Declaration/<tt/unsigned int __fastcall__ mul20(unsigned char value);/ <tag/Declaration/<tt/unsigned int __fastcall__ mul20 (unsigned char value);/
<tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 20 to get a 16 bit result. <tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 20 to get a 16 bit result.
<tag/Availability/cc65 <tag/Availability/cc65
</descrip> </descrip>
@@ -5577,7 +5577,7 @@ memory allocated for the driver.
<descrip> <descrip>
<tag/Function/Multiplies argument by 40. <tag/Function/Multiplies argument by 40.
<tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/ <tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/
<tag/Declaration/<tt/unsigned int __fastcall__ mul40(unsigned char value);/ <tag/Declaration/<tt/unsigned int __fastcall__ mul40 (unsigned char value);/
<tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 40 to get a 16 bit result. <tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 40 to get a 16 bit result.
<tag/Availability/cc65 <tag/Availability/cc65
</descrip> </descrip>

View File

@@ -75,12 +75,12 @@ unsigned long __fastcall__ umul16x8r32 (unsigned lhs, unsigned char rhs);
unsigned long __fastcall__ umul16x16r32 (unsigned lhs, unsigned rhs); unsigned long __fastcall__ umul16x16r32 (unsigned lhs, unsigned rhs);
/* Multiplicate two unsigned 16 bit to yield an unsigned 32 bit result */ /* Multiplicate two unsigned 16 bit to yield an unsigned 32 bit result */
unsigned int __fastcall__ mul20(unsigned char value); unsigned int __fastcall__ mul20 (unsigned char value);
/* Multiply an 8 bit unsigned value by 20 and return the 16 bit unsigned /* Multiply an 8 bit unsigned value by 20 and return the 16 bit unsigned
** result ** result
*/ */
unsigned int __fastcall__ mul40(unsigned char value); unsigned int __fastcall__ mul40 (unsigned char value);
/* Multiply an 8 bit unsigned value by 40 and return the 16 bit unsigned /* Multiply an 8 bit unsigned value by 40 and return the 16 bit unsigned
** result ** result
*/ */