Create The Basic Skeleton for the YMF262 HAL

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2026-04-29 17:40:09 -03:00
parent e7d5b47ddf
commit 49fd6664cc
3 changed files with 8 additions and 0 deletions

View File

@ -45,11 +45,13 @@ target_link_directories(${CMAKE_PROJECT_NAME} PRIVATE
# Add sources to executable
target_sources(${CMAKE_PROJECT_NAME} PRIVATE
# Add user sources here
"Lib/YMF262-HAL/Src/YMF262-HAL.c"
)
# Add include paths
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE
# Add user defined include paths
"Lib/YMF262-HAL/Inc"
)
# Add project symbols (macros)

View File

@ -0,0 +1,5 @@
#ifndef YMF262_HAL
#define YMF262_HAL
#endif

View File

@ -0,0 +1 @@
#include "YMF262-HAL.h"