From c9dbfec6be3ded1d6386d1a8cfb231c5e1ea666f Mon Sep 17 00:00:00 2001 From: Glenn Anderson Date: Sat, 19 Mar 2022 13:02:34 -0700 Subject: [PATCH] Change readDataLoop alignment to 16 --- src/BlueSCSI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BlueSCSI.cpp b/src/BlueSCSI.cpp index 0b88675..bfce7b0 100644 --- a/src/BlueSCSI.cpp +++ b/src/BlueSCSI.cpp @@ -857,7 +857,7 @@ void readDataPhase(int len, byte* p) /* * See writeDataLoop for optimization info. */ -void readDataLoop(uint32_t blockSize) __attribute__ ((aligned(8))); +void readDataLoop(uint32_t blockSize) __attribute__ ((aligned(16))); void readDataLoop(uint32_t blockSize) { register byte *dstptr= m_buf;