From bb36e3fa18e48dd2156f9e70e5cac42463a51188 Mon Sep 17 00:00:00 2001 From: cebix <> Date: Mon, 18 Oct 1999 11:44:20 +0000 Subject: [PATCH] - 680x0 added to list of CPU that can handle unaligned accesses --- BasiliskII/src/Unix/sysdeps.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/sysdeps.h b/BasiliskII/src/Unix/sysdeps.h index b79d0e43..bb31fb26 100644 --- a/BasiliskII/src/Unix/sysdeps.h +++ b/BasiliskII/src/Unix/sysdeps.h @@ -117,7 +117,7 @@ typedef struct timeval tm_time_t; typedef uae_u32 uaecptr; /* Alignment restrictions */ -#if defined(__i386__) || defined(__powerpc__) +#if defined(__i386__) || defined(__powerpc__) || defined(__m68k__) # define CPU_CAN_ACCESS_UNALIGNED #endif