summaryrefslogtreecommitdiff
path: root/n/avr/modules/math/fixed/fixed.h
diff options
context:
space:
mode:
Diffstat (limited to 'n/avr/modules/math/fixed/fixed.h')
-rw-r--r--n/avr/modules/math/fixed/fixed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/n/avr/modules/math/fixed/fixed.h b/n/avr/modules/math/fixed/fixed.h
index 4f9f77f..a3200c1 100644
--- a/n/avr/modules/math/fixed/fixed.h
+++ b/n/avr/modules/math/fixed/fixed.h
@@ -25,7 +25,7 @@
*
* }}} */
-/** Numbers notation:
+/* Numbers notation:
* [u]{i|f}x[.y]
* u: unsigned
* i: integer
@@ -39,7 +39,7 @@
#ifndef HOST
-/** Multiply f8.24 by f8.24, return f8.24. */
+/* Multiply f8.24 by f8.24, return f8.24. */
#define fixed_mul_f824(a, b) ({ \
uint16_t dummy; \
asm ("" : "=r" (dummy)); \
@@ -47,7 +47,7 @@
int32_t
fixed_mul_f824_asm (uint16_t dummy, int32_t a, int32_t b);
-/** Divide f8.24 by f8.24, return f8.24. */
+/* Divide f8.24 by f8.24, return f8.24. */
int32_t
fixed_div_f824 (int32_t a, int32_t b);