about summary refs log tree commit diff stats
path: root/src/dynarec/dynarec_helper.h
blob: c20c9d7489d53182cfedd745b189bf617366610f (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(LA64)
#include "la64/dynarec_la64_helper.h"
#elif defined(RV64)
#include "rv64/dynarec_rv64_helper.h"
#else
#error Unsupported architecture
#endif

#endif //__DYNAREC_HELPER__H_