Deleted Added
sdiff udiff text old ( 11723:0596db108c53 ) new ( 11963:3fb6bb58e6a4 )
full compact
1/*
2 * Copyright (c) 2009 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
4 * Copyright (c) 2014 Sven Karlsson
5 * Copyright (c) 2016 RISC-V Foundation
6 * Copyright (c) 2016 The University of Virginia
7 * All rights reserved.
8 *

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

53
54namespace RiscvISA
55{
56
57class ISA : public SimObject
58{
59 protected:
60 std::vector<MiscReg> miscRegFile;
61 std::map<int, std::string> miscRegNames;
62
63 public:
64 typedef RiscvISAParams Params;
65
66 void
67 clear();
68
69 MiscReg
70 readMiscRegNoEffect(int misc_reg) const;
71
72 MiscReg

--- 47 unchanged lines hidden ---