t1000.cc (8739:925f15f96322) t1000.cc (8741:491297d019f3)
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;

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

43#include "sim/system.hh"
44
45using namespace std;
46//Should this be AlphaISA?
47using namespace TheISA;
48
49T1000::T1000(const Params *p)
50 : Platform(p), system(p->system)
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;

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

43#include "sim/system.hh"
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.
53 // set the back pointer from the system to myself
54 system->platform = this;
55#endif
56}
51{}
57
52
58Tick
59T1000::intrFrequency()
60{
61 panic("Need implementation\n");
62 M5_DUMMY_RETURN
63}
64
65void
66T1000::postConsoleInt()
67{
68 warn_once("Don't know what interrupt to post for console.\n");
69 //panic("Need implementation\n");
70}
71
72void

--- 52 unchanged lines hidden ---
53void
54T1000::postConsoleInt()
55{
56 warn_once("Don't know what interrupt to post for console.\n");
57 //panic("Need implementation\n");
58}
59
60void

--- 52 unchanged lines hidden ---