t1000.cc (6658:f4de76601762) | t1000.cc (8739:925f15f96322) |
---|---|
1/* 2 * Copyright (c) 2004-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; --- 35 unchanged lines hidden (view full) --- 44 45using namespace std; 46//Should this be AlphaISA? 47using namespace TheISA; 48 49T1000::T1000(const Params *p) 50 : Platform(p), system(p->system) 51{ | 1/* 2 * Copyright (c) 2004-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; --- 35 unchanged lines hidden (view full) --- 44 45using namespace std; 46//Should this be AlphaISA? 47using namespace TheISA; 48 49T1000::T1000(const Params *p) 50 : Platform(p), system(p->system) 51{ |
52#if FULL_SYSTEM //XXX No platform pointer on system objects in SE mode. |
|
52 // set the back pointer from the system to myself 53 system->platform = this; | 53 // set the back pointer from the system to myself 54 system->platform = this; |
55#endif |
|
54} 55 56Tick 57T1000::intrFrequency() 58{ 59 panic("Need implementation\n"); 60 M5_DUMMY_RETURN 61} --- 61 unchanged lines hidden --- | 56} 57 58Tick 59T1000::intrFrequency() 60{ 61 panic("Need implementation\n"); 62 M5_DUMMY_RETURN 63} --- 61 unchanged lines hidden --- |