summaryrefslogtreecommitdiff
path: root/n/avr/modules/math/fixed/fixed.h
diff options
context:
space:
mode:
authorschodet2005-10-09 17:40:19 +0000
committerschodet2005-10-09 17:40:19 +0000
commitc1be8cf1fe070dab3836a2735b653ec1a477744d (patch)
tree97c2f3404742a61a0af17770050e9e8733008796 /n/avr/modules/math/fixed/fixed.h
parentb0d74346240bd6885ec0f888e8a179ac63e78c16 (diff)
Correction de la doc.
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);