summaryrefslogtreecommitdiff
path: root/include/arch.h
blob: 70bc41c271148385503d381ff7ec4e5524b96748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ARCH_H
#define ARCH_H

class Arch {
	private:
		Arch(const Arch &copy);

	public:
		Arch () {}
		void setup();
		void idle_loop();
		void delay_us(unsigned char const us);
};

extern Arch arch;

#endif