about summary refs log tree commit diff stats
path: root/src/dynarec/dynarec_helper.h
blob: 19f48dcbc64d6cb4fb9787e93ab9417102d0fa9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __DYNAREC_HELPER__H_
#define __DYNAREC_HELPER__H_

#ifdef ARM64
#include "arm64/dynarec_arm64_helper.h"
#elif defined(LA464)
#include "la464/dynarec_la464_helper.h"
#else
#error Unsupported architecture
#endif

#endif //__DYNAREC_HELPER__H_