Deleted Added
sdiff udiff text old ( 7799:5d0f62927d75 ) new ( 7811:a8fc35183c10 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

43 */
44
45#ifndef __ARCH_ARM_ISA_TRAITS_HH__
46#define __ARCH_ARM_ISA_TRAITS_HH__
47
48#include "arch/arm/types.hh"
49#include "base/types.hh"
50
51namespace LittleEndianGuest {};
52
53#define TARGET_ARM
54
55class StaticInstPtr;
56
57namespace ArmISA
58{
59 using namespace LittleEndianGuest;

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

118 enum InterruptTypes
119 {
120 INT_RST,
121 INT_ABT,
122 INT_IRQ,
123 INT_FIQ,
124 NumInterruptTypes
125 };
126};
127
128using namespace ArmISA;
129
130#endif // __ARCH_ARM_ISA_TRAITS_HH__