Deleted Added
sdiff udiff text old ( 3091:dba513d68c16 ) new ( 3170:37fd1e73f836 )
full compact
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;

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

73
74
75 private:
76 // prevent copying of a MainMemory object
77 PhysicalMemory(const PhysicalMemory &specmem);
78 const PhysicalMemory &operator=(const PhysicalMemory &specmem);
79
80 protected:
81 uint8_t *pmemAddr;
82 MemoryPort *port;
83 int pagePtr;
84 Tick lat;
85
86 public:
87 Addr new_page();
88 uint64_t size() { return params()->addrRange.size(); }

--- 35 unchanged lines hidden ---