|
debugger.DFA.IsValidRegister
|
This function checks the state of the base-block configuration registers of the DFA-IP. [RH850][E2/IE850A]
[Specification format]
debugger.DFA.IsValidRegister(register)
|
[Argument(s)]
|
|
|
|
register
|
Specify the register name (string) or address (numerical value: 0xF0300000 to 0xF0309857) of the base-block configuration register.
|
[Return value]
If the base-block configuration register is valid: True
If the base-block configuration register is invalid: False
[Detailed description]
- | This function checks the state of the specified base-block configuration register of the DFA-IP. |
[Example of use]
>>>debugger.DFA.IsValidRegister("DFA0.DFC11_S1S1_0000_control_split_combine:IOR")
True
>>>debugger.DFA.IsValidRegister(0xF0300400)
True
>>>
|