coding style fixed, some FIXMEs and comments added.

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1974 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
adrian
2012-12-12 13:08:17 +00:00
parent fb4ba0b104
commit 25f75b299c
7 changed files with 22 additions and 17 deletions

View File

@ -11,7 +11,7 @@ namespace fail {
class Gem5ArmCPU : public ArmArchitecture, public ArmCPUState {
public:
// TODO: comments
Gem5ArmCPU(unsigned int id, System* system) : m_Id(id), m_System(system) {}
Gem5ArmCPU(unsigned int id, System* system) : m_Id(id), m_System(system) { }
regdata_t getRegisterContent(Register* reg);
void setRegisterContent(Register* reg, regdata_t value);
@ -20,7 +20,6 @@ public:
address_t getLinkRegister();
unsigned int getId() { return m_Id; }
private:
unsigned int m_Id;
System* m_System;