summaryrefslogtreecommitdiff
path: root/src/common/asm.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-11-27 22:23:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-11-27 22:23:05 (GMT)
commit7a8628a53e55641e31737fe10b6ed7b5498e84a7 (patch)
tree4fb8d2431258bcca4bdf7a74eb4660e3df3e84bd /src/common/asm.h
parentb2b43b80eb207fabc8eb5e08798f120f0dd5541e (diff)
Fixed binary string format in immediate operands.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@612 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/common/asm.h')
-rw-r--r--src/common/asm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/asm.h b/src/common/asm.h
index 047d8db..5207bf7 100644
--- a/src/common/asm.h
+++ b/src/common/asm.h
@@ -33,6 +33,9 @@
/* Détermine l'indice du premier bit à 1, côté gauche. */
bool msb_32(uint32_t, unsigned int *);
+/* Détermine l'indice du premier bit à 1, côté gauche. */
+bool msb_64(uint64_t, unsigned int *);
+
#endif /* _COMMON_ASM_H */