diff options
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r-- | plugins/pychrysalide/arch/operands/immediate.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/pychrysalide/arch/operands/immediate.c b/plugins/pychrysalide/arch/operands/immediate.c index 7a570f0..39ce2e2 100644 --- a/plugins/pychrysalide/arch/operands/immediate.c +++ b/plugins/pychrysalide/arch/operands/immediate.c @@ -123,7 +123,14 @@ static PyObject *py_imm_operand_new(PyTypeObject *type, PyObject *args, PyObject "The ImmOperand deals with immediate value as operand." \ "\n" \ "There are several ways to display these values in a disassembly," \ - " the operand handles that." + " the operand handles that.\n" \ + "\n" \ + "Instances can be created using the following constructor:\n" \ + "\n" \ + " ImmOperand(size, value)" \ + "\n" \ + "Where size specifies the original size of the provided value, as" \ + " a pychrysalide.analysis.BinContent.MemoryDataSize." ret = PyArg_ParseTuple(args, "IK", &raw_size, &value); if (!ret) return NULL; |