diff options
author | twinaphex | 2016-08-05 20:36:10 +0200 |
---|---|---|
committer | twinaphex | 2016-08-05 20:36:10 +0200 |
commit | 2bf3516c5a61e64ccf267501624bcb30637374ec (patch) | |
tree | 2ddfd486508663e5771062fd46ced63af03d3cc2 /src | |
parent | 05a3fc1621484c00e7525c7e7c9c846132126482 (diff) | |
download | snes9x2002-2bf3516c5a61e64ccf267501624bcb30637374ec.tar.gz snes9x2002-2bf3516c5a61e64ccf267501624bcb30637374ec.tar.bz2 snes9x2002-2bf3516c5a61e64ccf267501624bcb30637374ec.zip |
This can go now
Diffstat (limited to 'src')
-rw-r--r-- | src/asmmemfuncs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asmmemfuncs.h b/src/asmmemfuncs.h index dd98e79..9d70b15 100644 --- a/src/asmmemfuncs.h +++ b/src/asmmemfuncs.h @@ -1,7 +1,7 @@ #ifndef _ASMMEMFUNCS_H_
#define _ASMMEMFUNCS_H_
-#if defined(ARM_ASM) && !defined(__MACH__)
+#if defined(ARM_ASM)
#define memset32(_dst, _c, _count) \
({ uint32_t *dst = (_dst); register uint32_t c __asm__ ("r7") = (_c); int count = (_count); register uint32_t dummy0 __asm__ ("r4"), dummy1 __asm__ ("r5"), dummy2 __asm__ ("r6"); \
__asm__ __volatile__ ( \
|