This class holds IOR and SFR information (return value of the debugger.GetIORList function).
[Type]
class IORInfo:
IORName = ""
Value = ""
Type = ""
Size = ""
Address = ""
Category = ""
|
[Variable]
|
|
IORName
|
This holds the name of IOR or SFR.
|
Value
|
This holds the value.
|
Type
|
This holds the type.
|
Size
|
This holds the size.
The number of bytes is held when the unit of the size is bytes and the number of bits (bits) is held when the unit of the size is bits.
|
Address
|
This holds the address
|
Category
|
This holds the category.
|
[Detailed description]
- | IORInfo is a class, and it is passed as the return value when the debugger.GetIORList function is executed. |
[Example of use]
>>> ior = debugger.GetIORList()
AD0.ADDRA 0x0000 IOR 2 0x00088040
AD0.ADDRB 0x0000 IOR 2 0x00088042
AD0.ADDRC 0x0000 IOR 2 0x00088044
:
>>> print ior[0].IORName
AD0.ADDRA
>>> print funcinfo[0].Type
IOR
>>> print funcinfo[0].Address
557120
|