Deleted Added
sdiff udiff text old ( 5595:6ebdae3f619b ) new ( 5596:cdc8893c649e )
full compact
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Korey Sewell
29 */
30
31#include "cpu/base.hh"
32
33#if THE_ISA == ALPHA_ISA
34 #include "cpu/o3/alpha/impl.hh"
35 #include "cpu/o3/alpha/dyn_inst.hh"
36#elif THE_ISA == MIPS_ISA
37 #include "cpu/o3/mips/impl.hh"
38 #include "cpu/o3/mips/dyn_inst.hh"
39#elif THE_ISA == SPARC_ISA
40 #include "cpu/o3/sparc/impl.hh"
41 #include "cpu/o3/sparc/dyn_inst.hh"
42#else
43 #error "ISA-specific header files O3CPU not defined ISA"
44#endif