summaryrefslogtreecommitdiff
path: root/src/arch/operand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/operand.h')
-rw-r--r--src/arch/operand.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/arch/operand.h b/src/arch/operand.h
new file mode 100644
index 0000000..81c9a53
--- /dev/null
+++ b/src/arch/operand.h
@@ -0,0 +1,44 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * operand.h - prototypes pour la gestion générique des opérandes
+ *
+ * Copyright (C) 2008 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * OpenIDA is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenIDA is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _ARCH_OPERAND_H
+#define _ARCH_OPERAND_H
+
+
+#include <stdbool.h>
+#include <stdint.h>
+
+
+
+/* Définition générique d'une opérande */
+typedef struct _asm_operand asm_operand;
+
+
+
+/* Crée une opérande pour l'instruction 'db'. */
+bool fill_db_operand(asm_operand *, uint8_t);
+
+
+
+
+#endif /* _ARCH_OPERAND_H */