OSCR
Open Source Cartridge Reader
Loading...
Searching...
No Matches
syslibinc.h
Go to the documentation of this file.
1
6#pragma once
7#ifndef OSCR_ARCH_SYSLIBINC_H_
8# define OSCR_ARCH_SYSLIBINC_H_
9
10# include "arch.h"
11
12# if defined(OSCR_ARCH_AVR)
13# include "arch/avr/syslibinc.h"
14# elif defined(OSCR_ARCH_STM32)
15# include "arch/stm32/syslibinc.h"
16# else
17# error "Unsupported target architecture."
18# endif /* OSCR_ARCH_* */
19
20#endif /* OSCR_ARCH_SYSLIBINC_H_ */
Support Multiple Architectures.