Deleted Added
sdiff udiff text old ( 10631:6d6bfdb036ce ) new ( 10905:a6ca6831e775 )
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;

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

125
126
127 /** Post an Interrupt to the CPU */
128 void postIntr(uint8_t interrupt);
129
130 /** Clear an Interrupt to the CPU */
131 void clearIntr(uint8_t interrupt);
132
133 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
134 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
135
136 /**
137 * Start running.
138 */
139 virtual void startup();
140
141};
142
143#endif // __DEV_MALTA_IO_HH__