From c43911478784fe8120b4ffabf7bddada09426ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Rivi=C3=A8re?= Date: Fri, 19 Oct 2012 21:43:11 +0000 Subject: [PATCH] Fixed inverted BaS source and destination. --- BaS_GNU/BaS_GNU/sources/sysinit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BaS_GNU/BaS_GNU/sources/sysinit.c b/BaS_GNU/BaS_GNU/sources/sysinit.c index c82e33c..adb6af7 100644 --- a/BaS_GNU/BaS_GNU/sources/sysinit.c +++ b/BaS_GNU/BaS_GNU/sources/sysinit.c @@ -711,10 +711,10 @@ void initialize_hardware(void) { do { - *src++ = *dst++; - *src++ = *dst++; - *src++ = *dst++; - *src++ = *dst++; + *dst++ = *src++; + *dst++ = *src++; + *dst++ = *src++; + *dst++ = *src++; } while (dst < &bas_end); /* clear all addresses touched during copy from all cache lines */