--- hatari/src/uae-cpu/maccess.h 2019/04/01 07:12:18 1.1.1.4 +++ hatari/src/uae-cpu/maccess.h 2019/04/09 08:59:33 1.1.1.6 @@ -7,8 +7,8 @@ * * Adaptation to Hatari by Thomas Huth, Eero Tamminen * - * This file is distributed under the GNU Public License, version 2 or at - * your option any later version. Read the file gpl.txt for details. + * This file is distributed under the GNU General Public License, version 2 + * or at your option any later version. Read the file gpl.txt for details. */ #ifndef UAE_MACCESS_H @@ -17,7 +17,8 @@ /* Can the actual CPU access unaligned memory? */ #ifndef CPU_CAN_ACCESS_UNALIGNED -# if defined(__i386__) || defined(powerpc) || defined(__mc68020__) +# if defined(__i386__) || defined(__x86_64__) || defined(__mc68020__) || \ + defined(powerpc) || defined(__ppc__) || defined(__ppc64__) # define CPU_CAN_ACCESS_UNALIGNED 1 # else # define CPU_CAN_ACCESS_UNALIGNED 0