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