/usr/include/gpsim/pie.h is in gpsim-dev 0.27.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #ifndef PIE_H
#define PIE_H
class PIR;
#include "registers.h"
//---------------------------------------------------------
// PIE Peripheral Interrupt Enable register base class
// for PIE1 & PIE2
class PIE : public sfr_register
{
public:
PIE(Processor *pCpu, const char *pName, const char *pDesc);
void put(unsigned int new_value);
void setPir(PIR *pPir);
protected:
PIR *pir;
};
#endif /* PIE_H */
|