1
0
Fork 0

Add 64-bit ARM (ARMv8, little endian) by M-HT. Thanks M-HT!

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4117
This commit is contained in:
Peter Veenstra 2018-06-13 09:24:01 +00:00
parent 1afaf28921
commit e20cc10750
4 changed files with 1247 additions and 1 deletions

View file

@ -289,6 +289,12 @@ case "$host_cpu" in
c_targetcpu="arm"
dnl c_unalignedmemory=yes
;;
aarch64)
AC_DEFINE(C_TARGETCPU,ARMV8LE)
AC_MSG_RESULT(ARMv8 Little Endian 64-bit)
c_targetcpu="arm"
c_unalignedmemory=yes
;;
*)
AC_DEFINE(C_TARGETCPU,UNKNOWN)
AC_MSG_RESULT(unknown)