Deleted Added
sdiff udiff text old ( 3960:1dca397b2bab ) new ( 4762:c94e103c83ad )
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;

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

32#define __ARCH_SPARC_SYSTEM_HH__
33
34#include <string>
35#include <vector>
36
37#include "base/loader/symtab.hh"
38#include "cpu/pc_event.hh"
39#include "kern/system_events.hh"
40#include "params/SparcSystem.hh"
41#include "sim/sim_object.hh"
42#include "sim/system.hh"
43
44class SparcSystem : public System
45{
46 public:
47 typedef SparcSystemParams Params;
48 SparcSystem(Params *p);
49 ~SparcSystem();
50
51/**
52 * Serialization stuff
53 */
54 public:
55 virtual void serialize(std::ostream &os);
56 virtual void unserialize(Checkpoint *cp, const std::string &section);

--- 85 unchanged lines hidden ---