summaryrefslogtreecommitdiff
path: root/src/arch/x86/operand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/operand.c')
-rw-r--r--src/arch/x86/operand.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/arch/x86/operand.c b/src/arch/x86/operand.c
index e916541..5e01fd7 100644
--- a/src/arch/x86/operand.c
+++ b/src/arch/x86/operand.c
@@ -40,7 +40,7 @@
/* ---------------------- COQUILLE VIDE POUR LES OPERANDES X86 ---------------------- */
-/* Définition d'un opérande de la x86 (instance) */
+/* Définition d'un opérande de x86 (instance) */
struct _GX86Operand
{
GArchOperand parent; /* Instance parente */
@@ -48,7 +48,7 @@ struct _GX86Operand
};
-/* Définition d'un opérande de la x86 (classe) */
+/* Définition d'un opérande de x86 (classe) */
struct _GX86OperandClass
{
GArchOperandClass parent; /* Classe parente */
@@ -59,7 +59,7 @@ struct _GX86OperandClass
/* Initialise la classe des opérandes x86 de base. */
static void g_x86_operand_class_init(GX86OperandClass *);
-/* Initialise une instance d'opérande de base pour la x86. */
+/* Initialise une instance d'opérande de base pour x86. */
static void g_x86_operand_init(GX86Operand *);
@@ -224,7 +224,7 @@ static void g_x86_operand_class_init(GX86OperandClass *klass)
* *
* Paramètres : operand = instance à initialiser. *
* *
-* Description : Initialise une instance d'opérande de registre x86. *
+* Description : Initialise une instance d'opérande de base pour x86. *
* *
* Retour : - *
* *
@@ -297,7 +297,7 @@ static void g_x86_register_operand_init(GX86RegisterOperand *operand)
* size = taille de l'opérande, et donc du registre. *
* base = indice du premier registre. *
* *
-* Description : Crée un opérande visant un registre X86. *
+* Description : Crée un opérande visant un registre x86. *
* *
* Retour : Opérande mis en place. *
* *
@@ -336,7 +336,7 @@ GArchOperand *g_x86_register_operand_new_from_opcode(const bin_t *data, off_t *p
* size = taille de l'opérande, et donc du registre. *
* first = indique la partie du ModR/M à traiter. *
* *
-* Description : Crée un opérande visant un registre X86. *
+* Description : Crée un opérande visant un registre x86. *
* *
* Retour : Opérande mis en place. *
* *
@@ -376,7 +376,7 @@ GArchOperand *g_x86_register_operand_new_from_mod_rm(const bin_t *data, off_t *p
* Paramètres : index = indice du registre visé. *
* size = taille de l'opérande, et donc du registre. *
* *
-* Description : Crée un opérande visant un registre X86 donnée. *
+* Description : Crée un opérande visant un registre x86 donné. *
* *
* Retour : Opérande mis en place. *
* *