Everything

debugger.Register.GetValue


This function refers register/IO register/SFR.

[Specification format]

debugger.Register.GetValue(regName)

[Argument(s)]

Argument

Description

regName

Specify the register name to reference.

[Return value]

Register value (numeric value)

[Detailed description]

-

This function displays the value of the register specified by "regName".

[Example of use]

>>>debugger.Register.GetValue("pc")
0x100
>>>debugger.Register.GetValue("A:RB1")
0x20
>>>debugger.Register.SetValue("pc", 0x200)
True
>>>debugger.Register.GetValue("pc")
0x200
>>>