Deleted Added
sdiff udiff text old ( 5132:ad5e94876bfc ) new ( 5299:e61b9f2a9732 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

74 typedef X86SystemParams Params;
75 X86System(Params *p);
76 ~X86System();
77
78/**
79 * Serialization stuff
80 */
81 public:
82 virtual void serialize(std::ostream &os);
83 virtual void unserialize(Checkpoint *cp, const std::string &section);
84
85 protected:
86 const Params *params() const { return (const Params *)_params; }
87
88 virtual Addr fixFuncEventAddr(Addr addr)
89 {
90 //XXX This may eventually have to do something useful.
91 return addr;
92 }
93};
94
95#endif
96