From c6637447648afb5228ae05e3fa1ffede1b6d22f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Wed, 6 Nov 2013 07:07:54 +0000 Subject: [PATCH] fixed comments; cleanup --- sources/BaS.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/BaS.c b/sources/BaS.c index 9e30099..b8299d3 100644 --- a/sources/BaS.c +++ b/sources/BaS.c @@ -227,9 +227,9 @@ void disable_coldfire_interrupts() void BaS(void) { uint8_t *src; - uint8_t *dst = (uint8_t *)TOS; + uint8_t *dst = (uint8_t *) TOS; -#ifdef MACHINE_FIREBEE /* LITE board has no pic and (currently) no nvram */ +#if MACHINE_FIREBEE /* LITE board has no pic and (currently) no nvram */ pic_init(); nvram_init(); #endif /* MACHINE_FIREBEE */ @@ -238,7 +238,7 @@ void BaS(void) /* copy EMUTOS */ src = (uint8_t *) EMUTOS; - //dma_memcpy(dst, src, EMUTOS_SIZE); + dma_memcpy(dst, src, EMUTOS_SIZE); xprintf("finished\r\n"); xprintf("initialize MMU: ");