113a114,133
> void
> X86ISA::Cmos::serialize(std::ostream &os)
> {
> SERIALIZE_SCALAR(address);
> SERIALIZE_ARRAY(regs, numRegs);
>
> // Serialize the timer
> rtc.serialize("rtc", os);
> }
>
> void
> X86ISA::Cmos::unserialize(Checkpoint *cp, const std::string &section)
> {
> UNSERIALIZE_SCALAR(address);
> UNSERIALIZE_ARRAY(regs, numRegs);
>
> // Serialize the timer
> rtc.unserialize("rtc", cp, section);
> }
>