Deleted Added
sdiff udiff text old ( 7799:5d0f62927d75 ) new ( 7903:7fcfb515d7bf )
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;

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

106 rtc.writeData(reg, val);
107 } else {
108 DPRINTF(CMOS, "Writing non-volitile CMOS address %x with %x.\n",
109 reg, val);
110 regs[reg] = val;
111 }
112}
113
114X86ISA::Cmos *
115CmosParams::create()
116{
117 return new X86ISA::Cmos(this);
118}