about summary refs log tree commit diff stats
path: root/src/dynarec/dynarec_helper.h
blob: 2f4b82fa13caa6b872a4ca95082c7e0ed3445f33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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"
#elif defined(RV64)
#include "rv64/dynarec_rv64_helper.h"
#else
#error Unsupported architecture
#endif

#endif //__DYNAREC_HELPER__H_