diff options
author | Andrew Bardsley <Andreas.Bardsley@arm.com> | 2014-03-23 11:11:37 -0400 |
---|---|---|
committer | Andrew Bardsley <Andreas.Bardsley@arm.com> | 2014-03-23 11:11:37 -0400 |
commit | 0c001e729a2d63ee205b384848a7e95ffae492f7 (patch) | |
tree | bef5438f9eb2b33fbd8b8d3e8ab6add40978b538 | |
parent | 7630168a755122993072090cbd1d52a8dcaf1509 (diff) | |
download | gem5-0c001e729a2d63ee205b384848a7e95ffae492f7.tar.xz |
dev: Fix IsaFake's cxx_header setting
cxx_header was set incorrectly on IsaFake
-rw-r--r-- | src/dev/Device.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/Device.py b/src/dev/Device.py index 3b86ffb7d..b274b152c 100644 --- a/src/dev/Device.py +++ b/src/dev/Device.py @@ -53,7 +53,7 @@ class DmaDevice(PioDevice): class IsaFake(BasicPioDevice): type = 'IsaFake' - cxx_header = "dev/io_device.hh" + cxx_header = "dev/isa_fake.hh" pio_size = Param.Addr(0x8, "Size of address range") ret_data8 = Param.UInt8(0xFF, "Default data to return") ret_data16 = Param.UInt16(0xFFFF, "Default data to return") |