ePenguin-Software-Framework/arch/arm/common/inc/hal_arm.hpp

16 lines
216 B
C++

#ifndef _HAL_ARM_HPP_
#define _HAL_ARM_HPP_
#include "epenguin_conf.h"
#if !(EP_UARCH == __UARCH_ARM__)
#error This shouldnt be included unless arm is the uarch of choice!
#endif
namespace hal::arm
{
}
#endif