diff --git a/src/hal/avr/cpu.cpp b/src/hal/avr/cpu.cpp new file mode 100644 index 0000000..de23c60 --- /dev/null +++ b/src/hal/avr/cpu.cpp @@ -0,0 +1,10 @@ +#include "../cpu.h" + +namespace hal { +namespace CPU { + + void Init() { + } + +} // namespace CPU +} // namespace hal diff --git a/src/hal/cpu.h b/src/hal/cpu.h new file mode 100644 index 0000000..1f7e2c0 --- /dev/null +++ b/src/hal/cpu.h @@ -0,0 +1,12 @@ +#pragma once + +/// Hardware Abstraction Layer for the CPU + +namespace hal { +namespace CPU { + + /// CPU init routines (not really necessary for the AVR) + void Init(); + +} // namespace CPU +} // namespace hal