You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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