1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 07:41:57 +00:00
r65emu/line.h

18 lines
260 B
C
Raw Normal View History

2023-10-03 14:25:53 +00:00
#ifndef _LINE_H
#define _LINE_H
class Line {
public:
Line(): _state(false) {}
operator bool() { return _state; }
void set(bool state) { _state = state; }
void clear() { set(false); }
void set() { set(true); }
private:
volatile bool _state;
};
#endif