blob: b588e66f901b0f5a2fbdb24bb52a5f8061741342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ARCH_H
#define ARCH_H
class Arch {
private:
Arch(const Arch ©);
public:
Arch () {}
void setup();
void idle_loop();
};
extern Arch arch;
#endif
|