From: Tomasz Buchert <tomasz.buchert@inria.fr>
Date: Sat, 1 Feb 2014 14:26:41 +0100
Subject: This patch adds a basic support for m68k and ppc64 architectures.

---
 src/hd/hd.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/hd/hd.c b/src/hd/hd.c
index 98597e0..5f5e54e 100644
--- a/src/hd/hd.c
+++ b/src/hd/hd.c
@@ -151,6 +151,18 @@
 #define HD_ARCH "68k"
 #endif
 
+#ifdef __mc68000__
+#define HD_ARCH "m68k"
+#endif
+
+#ifdef __powerpc64__
+#define HD_ARCH "ppc64"
+#endif
+
+#ifdef __sh__
+#define HD_ARCH "sh"
+#endif
+
 typedef struct disk_s {
   struct disk_s *next;
   unsigned crc;
