From 05d5632deaef49bdc6b84cece181aa7bffab989c Mon Sep 17 00:00:00 2001 From: Andrei Vlad LUTAS Date: Tue, 7 May 2024 17:03:07 +0300 Subject: [PATCH] https://github.com/bitdefender/bddisasm/issues/89 - fixed comment. --- inc/bdx86_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/bdx86_core.h b/inc/bdx86_core.h index 0f6958d..706d2e7 100644 --- a/inc/bdx86_core.h +++ b/inc/bdx86_core.h @@ -884,7 +884,7 @@ typedef struct _ND_OPERAND ND_OPDESC_REGISTER Register; // Register, if operand type if ND_OP_REG. ND_OPDESC_MEMORY Memory; // Memory, if operand type is ND_OP_MEM. ND_OPDESC_IMMEDIATE Immediate; // Immediate, if operand type is ND_OP_IMM. - ND_OPDESC_RELOFFSET RelativeOffset; // Relative offset, if operand type is ND_OP_REL_OFFS. + ND_OPDESC_RELOFFSET RelativeOffset; // Relative offset, if operand type is ND_OP_OFFS. ND_OPDESC_ADDRESS_FAR Address; // Address, seg:offset form, if operand type is ND_OP_ADDR. ND_OPDESC_ADDRESS_NEAR AddressNear; // Address, target64 form, if operand type is ND_OP_ADDR_NEAR. ND_OPDESC_CONSTANT Constant; // Constant, if operand type is ND_OP_CONST.