A few CPUState-related methods should be const (getter)
git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2084 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
@ -13,12 +13,11 @@ namespace fail {
|
||||
*/
|
||||
class ArmCPUState : public CPUState {
|
||||
public:
|
||||
virtual regdata_t getRegisterContent(Register* reg) = 0;
|
||||
/**
|
||||
* Returns the current Link Register.
|
||||
* @return the current lr
|
||||
*/
|
||||
virtual address_t getLinkRegister() = 0;
|
||||
virtual address_t getLinkRegister() const = 0;
|
||||
};
|
||||
|
||||
// TODO: Enum for misc registers
|
||||
|
||||
Reference in New Issue
Block a user