diff options
author | Andreas Färber <afaerber@suse.de> | 2012-11-20 16:15:47 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-03-12 10:35:54 +0100 |
commit | b350ab758342c764a6ead6ef064b15a72c830808 (patch) | |
tree | 8c741a55211c7ef96f732410f9ea4da4555a7567 /target-sh4/cpu.h | |
parent | c1b382e77d8693955d8838c19b33aeb214724f9b (diff) | |
download | qemu-b350ab758342c764a6ead6ef064b15a72c830808.zip |
target-sh4: Move PVR/PRR/CVR into SuperHCPUClass
They are never changed once initialized, and moving them to the class
will allow to inspect them before instantiating.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-sh4/cpu.h')
-rw-r--r-- | target-sh4/cpu.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index 49dcd9e7f3..f805778075 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -179,9 +179,6 @@ typedef struct CPUSH4State { CPU_COMMON int id; /* CPU model */ - uint32_t pvr; /* Processor Version Register */ - uint32_t prr; /* Processor Revision Register */ - uint32_t cvr; /* Cache Version Register */ void *intc_handle; int in_sleep; /* SR_BL ignored during sleep */ |