tsunami_cchip.cc (8737:770ccf3af571) tsunami_cchip.cc (9808:13ffc0066b76)
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;

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

52#include "mem/port.hh"
53#include "params/TsunamiCChip.hh"
54#include "sim/system.hh"
55
56//Should this be AlphaISA?
57using namespace TheISA;
58
59TsunamiCChip::TsunamiCChip(const Params *p)
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;

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

52#include "mem/port.hh"
53#include "params/TsunamiCChip.hh"
54#include "sim/system.hh"
55
56//Should this be AlphaISA?
57using namespace TheISA;
58
59TsunamiCChip::TsunamiCChip(const Params *p)
60 : BasicPioDevice(p), tsunami(p->tsunami)
60 : BasicPioDevice(p, 0x10000000), tsunami(p->tsunami)
61{
61{
62 pioSize = 0x10000000;
63
64 drir = 0;
65 ipint = 0;
66 itint = 0;
67
68 for (int x = 0; x < Tsunami::Max_CPUs; x++)
69 {
70 dim[x] = 0;
71 dir[x] = 0;

--- 465 unchanged lines hidden ---
62 drir = 0;
63 ipint = 0;
64 itint = 0;
65
66 for (int x = 0; x < Tsunami::Max_CPUs; x++)
67 {
68 dim[x] = 0;
69 dir[x] = 0;

--- 465 unchanged lines hidden ---