isa_device.hh (10609:ae5582819481) isa_device.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 83 unchanged lines hidden (view full) ---

92 */
93class DummyISADevice : public BaseISADevice
94{
95 public:
96 DummyISADevice()
97 : BaseISADevice() {}
98 ~DummyISADevice() {}
99
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 83 unchanged lines hidden (view full) ---

92 */
93class DummyISADevice : public BaseISADevice
94{
95 public:
96 DummyISADevice()
97 : BaseISADevice() {}
98 ~DummyISADevice() {}
99
100 void setMiscReg(int misc_reg, MiscReg val) M5_ATTR_OVERRIDE;
101 MiscReg readMiscReg(int misc_reg) M5_ATTR_OVERRIDE;
100 void setMiscReg(int misc_reg, MiscReg val) override;
101 MiscReg readMiscReg(int misc_reg) override;
102};
103
104}
105
106#endif // __ARCH_ARM_ISA_DEVICE_HH__
102};
103
104}
105
106#endif // __ARCH_ARM_ISA_DEVICE_HH__