Deleted Added
sdiff udiff text old ( 6757:d86d3d6e5326 ) new ( 7650:42684e4656e6 )
full compact
1/*
2 * Copyright (c) 2002-2005 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;
9 * redistributions in binary form must reproduce the above copyright

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

32#define __ARCH_ARM_SYSTEM_HH__
33
34#include <string>
35#include <vector>
36
37#include "params/ArmSystem.hh"
38#include "sim/sim_object.hh"
39#include "sim/system.hh"
40
41class ArmSystem : public System
42{
43 public:
44 typedef ArmSystemParams Params;
45 ArmSystem(Params *p);
46 ~ArmSystem();
47
48 virtual Addr fixFuncEventAddr(Addr addr)
49 {
50 //XXX This may eventually have to do something useful.
51 return addr;
52 }
53};
54
55#endif
56