Deleted Added
sdiff udiff text old ( 8739:925f15f96322 ) new ( 8741:491297d019f3 )
full compact
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;

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

49#include "sim/system.hh"
50
51using namespace std;
52using namespace TheISA;
53
54Malta::Malta(const Params *p)
55 : Platform(p), system(p->system)
56{
57 for (int i = 0; i < Malta::Max_CPUs; i++)
58 intr_sum_type[i] = 0;
59}
60
61void
62Malta::postConsoleInt()
63{
64 //see {Linux-src}/arch/mips/mips-boards/sim/sim_setup.c
65 io->postIntr(0x10/*HW4*/);
66}
67
68void

--- 41 unchanged lines hidden ---