diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-25 22:13:27 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-25 22:13:27 (GMT) |
commit | ae3725eae3c1f2008e6f26b1057d97a6b9050a3c (patch) | |
tree | ae879f8dd7f0604ca26a13a704183e613716e16f /src/arch | |
parent | 7370350b82305afe200c34ed91027a55f543bf98 (diff) |
Provided API to subclass instructions and operands in Python.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/operand.c | 5 | ||||
-rw-r--r-- | src/arch/operand.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/arch/operand.c b/src/arch/operand.c index 07a93ab..5936979 100644 --- a/src/arch/operand.c +++ b/src/arch/operand.c @@ -36,6 +36,11 @@ +/* ---------------------------------------------------------------------------------- */ +/* DEFINITION D'OPERANDE QUELCONQUE */ +/* ---------------------------------------------------------------------------------- */ + + /* Initialise la classe générique des opérandes. */ static void g_arch_operand_class_init(GArchOperandClass *); diff --git a/src/arch/operand.h b/src/arch/operand.h index 9a36f3d..a881a91 100644 --- a/src/arch/operand.h +++ b/src/arch/operand.h @@ -34,6 +34,9 @@ +/* ------------------------ DEFINITION D'OPERANDE QUELCONQUE ------------------------ */ + + /* Depuis "../analysis/binary.h" : description de fichier binaire */ typedef struct _GLoadedBinary GLoadedBinary; |