debugger.SaveRegisterBank.Information
|
This function displays information on the save register bank. [RX]
[Specification format]
debugger.SaveRegisterBank.Information(bankNumberList = [])
|
[Argument(s)]
|
|
bankNumberList
|
Specify the bank number of the banked register to display information (default: not specified).
When specifying multiple numbers, specify them by delimiting with a comma.
|
[Return value]
List of banked register information (see the BankedRegisterInfo property for detail)
[Detailed description]
- | This function displays information on the save register bank in the following format. |
bank-number
register-name value
|
- | When bankNumberList is specified, information on the specified bank number. |
- | When bankNumberList is not specified, then information on all banks will be displayed. |
[Example of use]
>>> srb = debugger.SaveRegisterBank.Information([1, 3])
Save register bank 1
R1 0x00000000
R2 0x00000000
...
ACC0 0x000000000000000000
ACC1 0x000000000000000000
Save register bank 3
R1 0x00000000
R2 0x00000000
...
ACC0 0x000000000000000000
ACC1 0x000000000000000000
--------------
>>> print srb[0].BankNumber
1
>>> print srb[0].RegisterName
R1
>>> print srb[0].Value
0
|