diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-02-28 16:03:28 +0800 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-02-28 16:03:28 +0800 |
| commit | c3fd9d03ba22beecc06e9bc2b17525a3a9ed65e1 (patch) | |
| tree | ca8995a6af869a004e65b2d56841e0060edf9d1b /src/main.c | |
| parent | 7a539e4ef750978a7f5ac7bd8e6287113ad23492 (diff) | |
| download | box64-c3fd9d03ba22beecc06e9bc2b17525a3a9ed65e1.tar.gz box64-c3fd9d03ba22beecc06e9bc2b17525a3a9ed65e1.zip | |
[DYNAREC] still working on multiarch
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 9a9f1aba..d1b6e8fe 100755 --- a/src/main.c +++ b/src/main.c @@ -281,6 +281,11 @@ HWCAP2_ECV if(arm64_atomics) printf_log(LOG_INFO, " ATOMICS"); printf_log(LOG_INFO, " PageSize:%d\n", box64_pagesize); +#elif defined(LA464) + printf_log(LOG_INFO, "Dynarec for LoongArch"); + printf_log(LOG_INFO, " PageSize:%d\n", box64_pagesize); +#else +#error Unsupported architecture #endif } #endif |