cmos.cc (5634:22553ec2f177) cmos.cc (5827:ac2c268bf4f1)
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;

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

31#include "dev/x86/cmos.hh"
32#include "dev/x86/intdev.hh"
33#include "mem/packet_access.hh"
34
35void
36X86ISA::Cmos::X86RTC::handleEvent()
37{
38 assert(intPin);
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;

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

31#include "dev/x86/cmos.hh"
32#include "dev/x86/intdev.hh"
33#include "mem/packet_access.hh"
34
35void
36X86ISA::Cmos::X86RTC::handleEvent()
37{
38 assert(intPin);
39 intPin->signalInterrupt();
39 intPin->raise();
40 //XXX This is a hack.
41 intPin->lower();
40}
41
42Tick
43X86ISA::Cmos::read(PacketPtr pkt)
44{
45 assert(pkt->getSize() == 1);
46 switch(pkt->getAddr() - pioAddr)
47 {

--- 67 unchanged lines hidden ---
42}
43
44Tick
45X86ISA::Cmos::read(PacketPtr pkt)
46{
47 assert(pkt->getSize() == 1);
48 switch(pkt->getAddr() - pioAddr)
49 {

--- 67 unchanged lines hidden ---