Deleted Added
sdiff udiff text old ( 13342:1ddb43f47325 ) new ( 13343:5a7ac3348cd1 )
full compact
1/*
2 * Copyright (c) 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;

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

41#include "base/trace.hh"
42#include "config/the_isa.hh"
43#include "debug/Uart.hh"
44#include "dev/platform.hh"
45#include "mem/packet.hh"
46#include "mem/packet_access.hh"
47
48using namespace std;
49using namespace TheISA;
50
51void
52Uart8250::processIntrEvent(int intrBit)
53{
54 if (intrBit & IER) {
55 DPRINTF(Uart, "UART InterEvent, interrupting\n");
56 platform->postConsoleInt();
57 status |= intrBit;

--- 274 unchanged lines hidden ---