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;

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

87 };
88
89 /** the disk must be accessed from the console */
90 SimpleDisk *disk;
91
92 /** the system console (the terminal) is accessable from the console */
93 Terminal *terminal;
94
95#if FULL_SYSTEM //XXX No AlphaSystem defined in SE mode.
95 /** a pointer to the system we are running in */
96 AlphaSystem *system;
98#endif
97
98 /** a pointer to the CPU boot cpu */
99 BaseCPU *cpu;
100
101 public:
102 typedef AlphaBackdoorParams Params;
103 AlphaBackdoor(const Params *p);
104

--- 22 unchanged lines hidden ---