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

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 */
30
31#include "arch/arm/system.hh"
32
33
34using namespace LittleEndianGuest;
35
36ArmSystem::ArmSystem(Params *p)
37 : System(p)
38{
39
40}
41
42ArmSystem::~ArmSystem()
43{
44}
45
46
47ArmSystem *
48ArmSystemParams::create()
49{
50 return new ArmSystem(this);
51}