physical.cc (5477:dc04d655315a) physical.cc (5606:6da7a58b0bc8)
1/*
2 * Copyright (c) 2001-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;

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

378
379void
380PhysicalMemory::recvStatusChange(Port::Status status)
381{
382}
383
384PhysicalMemory::MemoryPort::MemoryPort(const std::string &_name,
385 PhysicalMemory *_memory)
1/*
2 * Copyright (c) 2001-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;

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

378
379void
380PhysicalMemory::recvStatusChange(Port::Status status)
381{
382}
383
384PhysicalMemory::MemoryPort::MemoryPort(const std::string &_name,
385 PhysicalMemory *_memory)
386 : SimpleTimingPort(_name), memory(_memory)
386 : SimpleTimingPort(_name, _memory), memory(_memory)
387{ }
388
389void
390PhysicalMemory::MemoryPort::recvStatusChange(Port::Status status)
391{
392 memory->recvStatusChange(status);
393}
394

--- 176 unchanged lines hidden ---
387{ }
388
389void
390PhysicalMemory::MemoryPort::recvStatusChange(Port::Status status)
391{
392 memory->recvStatusChange(status);
393}
394

--- 176 unchanged lines hidden ---