system.cc (8799:dac1e33e07b0) system.cc (9292:e57c7d9736a5)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

62{}
63
64bool
65MipsSystem::breakpoint()
66{
67 return 0;
68}
69
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

62{}
63
64bool
65MipsSystem::breakpoint()
66{
67 return 0;
68}
69
70void
71MipsSystem::serialize(std::ostream &os)
72{
73 System::serialize(os);
74}
75
76
77void
78MipsSystem::unserialize(Checkpoint *cp, const std::string &section)
79{
80 System::unserialize(cp,section);
81}
82
83MipsSystem *
84MipsSystemParams::create()
85{
86 return new MipsSystem(this);
87}
88
70MipsSystem *
71MipsSystemParams::create()
72{
73 return new MipsSystem(this);
74}
75