diff options
author | Nathan Binkert <nate@binkert.org> | 2009-04-21 16:04:55 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-04-21 16:04:55 -0700 |
commit | 4d001e43da6da2972172c352153e745238860021 (patch) | |
tree | dfd0052a6ece6690540df06b4742e6d4d4cc2034 /src/arch/arm/microcode_rom.hh | |
parent | 4f7d6a881ce959663cb32f9bb70b4a6b40a456e1 (diff) | |
parent | fcc142463d38fc1d752b2e45c24a9e1040ccfc9e (diff) | |
download | gem5-4d001e43da6da2972172c352153e745238860021.tar.xz |
Automated merge with ssh://m5sim.org//repo/m5
Diffstat (limited to 'src/arch/arm/microcode_rom.hh')
-rw-r--r-- | src/arch/arm/microcode_rom.hh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/arch/arm/microcode_rom.hh b/src/arch/arm/microcode_rom.hh new file mode 100644 index 000000000..97e99de47 --- /dev/null +++ b/src/arch/arm/microcode_rom.hh @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2008 The Regents of The University of Michigan + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer; + * redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution; + * neither the name of the copyright holders nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * Authors: Gabe Black + */ + +#ifndef __ARCH_ARM_MICROCODE_ROM_HH__ +#define __ARCH_ARM_MICROCODE_ROM_HH__ + +#include "sim/microcode_rom.hh" + +namespace ArmISA +{ + using ::MicrocodeRom; +} + +#endif // __ARCH_ARM_MICROCODE_ROM_HH__ |