diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-02-16 00:21:42 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-02-16 00:21:42 -0500 |
commit | b82bd8fd78ba7b45b6bc9f9d4b768088d30c76ca (patch) | |
tree | 216e9e1f7a2109227928eac48c6e01f42550cd5d /cpu/base_cpu.hh | |
parent | 03e8793f894ec88445bc7104df02e7ed1d706889 (diff) | |
download | gem5-b82bd8fd78ba7b45b6bc9f9d4b768088d30c76ca.tar.xz |
changed interrupt index to be 64 bits long and fixed a bad include
in adaptec_ctrl.hh
cpu/base_cpu.cc:
changed index to 64bits
cpu/base_cpu.hh:
changed index to 64 bits
--HG--
extra : convert_revision : e70d5f09f6066b90fca82cae22bb7d7eb705d65e
Diffstat (limited to 'cpu/base_cpu.hh')
-rw-r--r-- | cpu/base_cpu.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/base_cpu.hh b/cpu/base_cpu.hh index 648035732..0041ecc99 100644 --- a/cpu/base_cpu.hh +++ b/cpu/base_cpu.hh @@ -48,7 +48,7 @@ class BaseCPU : public SimObject #ifdef FULL_SYSTEM protected: Tick frequency; - uint8_t interrupts[NumInterruptLevels]; + uint64_t interrupts[NumInterruptLevels]; uint64_t intstatus; public: |