Put one small component of the HAL together

This commit is contained in:
Justin Miller 2023-10-09 15:01:47 -07:00
parent 84ce7ff4fa
commit cf2818762d
2 changed files with 2 additions and 2 deletions

View file

@ -2,6 +2,6 @@
project(HAL)
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
add_subdirectory(halx86)
elseif(ARCH STREQUAL "arm")
elseif((ARCH STREQUAL "arm") OR (ARCH STREQUAL "arm64"))
add_subdirectory(halarm)
endif()

View file

@ -34,6 +34,6 @@
#include <obfuncs.h>
/* Internal HAL Headers */
#include "halp.h"
//#include "halp.h"
/* EOF */