1/*
2 * Copyright (c) 2002-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;

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

190{
191 Addr addr = 0;
192 if (consoleSymtab->findAddress("m5AlphaAccess", addr)) {
193 virtPort.write(addr, htog(EV5::Phys2K0Seg(access)));
194 } else
195 panic("could not find m5AlphaAccess\n");
196}
197
198bool
199AlphaSystem::breakpoint()
200{
201 return remoteGDB[0]->trap(SIGTRAP);
202}
203
198void
199AlphaSystem::serialize(std::ostream &os)
200{
201 System::serialize(os);
202 consoleSymtab->serialize("console_symtab", os);
203 palSymtab->serialize("pal_symtab", os);
204}
205

--- 71 unchanged lines hidden ---