i8254.cc (8232:b28d06a175be) i8254.cc (10642:9d3b6e7dd205)
1/*
2 * Copyright (c) 2008 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;

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

84}
85
86void
87X86ISA::I8254::unserialize(Checkpoint *cp, const std::string &section)
88{
89 pit.unserialize("pit", cp, section);
90}
91
1/*
2 * Copyright (c) 2008 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;

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

84}
85
86void
87X86ISA::I8254::unserialize(Checkpoint *cp, const std::string &section)
88{
89 pit.unserialize("pit", cp, section);
90}
91
92void
93X86ISA::I8254::startup()
94{
95 pit.startup();
96}
97
92X86ISA::I8254 *
93I8254Params::create()
94{
95 return new X86ISA::I8254(this);
96}
98X86ISA::I8254 *
99I8254Params::create()
100{
101 return new X86ISA::I8254(this);
102}