Skip to content
Snippets Groups Projects
arch.h 169 B
Newer Older
  • Learn to ignore specific revisions
  • #ifndef ARCH_H
    #define ARCH_H
    
    class Arch {
    	private:
    		Arch(const Arch &copy);
    
    	public:
    		Arch () {}
    		void setup();
    		void idle_loop();
    };
    
    extern Arch arch;
    
    #endif