aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/openmsx
diff options
context:
space:
mode:
authorjohans <johans@FreeBSD.org>2009-01-12 14:46:02 +0800
committerjohans <johans@FreeBSD.org>2009-01-12 14:46:02 +0800
commit0cc8f4584916fdcd6aaa120eb38ff603128caffa (patch)
tree5e8fcf61a50cc94fbfb8c73c2fef7cd4939f4e01 /emulators/openmsx
parent7fa50af824efc4868263e554bd8611754ae1be35 (diff)
downloadfreebsd-ports-gnome-0cc8f4584916fdcd6aaa120eb38ff603128caffa.tar.gz
freebsd-ports-gnome-0cc8f4584916fdcd6aaa120eb38ff603128caffa.tar.zst
freebsd-ports-gnome-0cc8f4584916fdcd6aaa120eb38ff603128caffa.zip
Add patch to compile on amd64 (forgotten in previous commit)
Diffstat (limited to 'emulators/openmsx')
-rw-r--r--emulators/openmsx/files/patch-src_utils_MemoryOps.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/openmsx/files/patch-src_utils_MemoryOps.cc b/emulators/openmsx/files/patch-src_utils_MemoryOps.cc
new file mode 100644
index 000000000000..81415130306b
--- /dev/null
+++ b/emulators/openmsx/files/patch-src_utils_MemoryOps.cc
@@ -0,0 +1,11 @@
+--- src/utils/MemoryOps.cc.orig 2009-01-10 02:09:59.000000000 +0100
++++ src/utils/MemoryOps.cc 2009-01-10 02:09:03.000000000 +0100
+@@ -79,7 +79,7 @@ static inline void memset_64_SSE(
+ }
+ #ifdef ASM_X86_64
+ asm volatile (
+- "movq %0, %%xmm0;"
++ "movd %0, %%xmm0;"
+ "unpcklps %%xmm0, %%xmm0;"
+ : // no output
+ : "r" (val)