system.cc (5543:3af77710f397) system.cc (5566:3440c9ad49b4)
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;

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

185}
186
187
188void
189AlphaSystem::setAlphaAccess(Addr access)
190{
191 Addr addr = 0;
192 if (consoleSymtab->findAddress("m5AlphaAccess", addr)) {
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;

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

185}
186
187
188void
189AlphaSystem::setAlphaAccess(Addr access)
190{
191 Addr addr = 0;
192 if (consoleSymtab->findAddress("m5AlphaAccess", addr)) {
193 virtPort.write(addr, htog(EV5::Phys2K0Seg(access)));
193 virtPort.write(addr, htog(AlphaISA::Phys2K0Seg(access)));
194 } else
195 panic("could not find m5AlphaAccess\n");
196}
197
198void
199AlphaSystem::serialize(std::ostream &os)
200{
201 System::serialize(os);

--- 18 unchanged lines hidden ---
194 } else
195 panic("could not find m5AlphaAccess\n");
196}
197
198void
199AlphaSystem::serialize(std::ostream &os)
200{
201 System::serialize(os);

--- 18 unchanged lines hidden ---