From 313167fccd85de4a8584760c83fca4607f27363c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Tue, 30 Oct 2012 20:43:23 +0000 Subject: [PATCH] finished ELF toolchain integration --- BaS_GNU/BaS_GNU/sources/sysinit.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BaS_GNU/BaS_GNU/sources/sysinit.c b/BaS_GNU/BaS_GNU/sources/sysinit.c index 10634e7..28448fd 100644 --- a/BaS_GNU/BaS_GNU/sources/sysinit.c +++ b/BaS_GNU/BaS_GNU/sources/sysinit.c @@ -392,6 +392,8 @@ void init_pll(void) #define NOP() __asm__ __volatile__("nop\n\t" : : : "memory") void init_video_ddr(void) { + xprintf("init video RAM: "); + * (volatile uint16_t *) 0xf0000400 = 0xb; /* set cke = 1, cs=1, config = 1 */ NOP(); @@ -417,6 +419,8 @@ void init_video_ddr(void) { NOP(); * (uint32_t *) 0xf0000400 = 0x01070002; /* fifo on, refresh on, ddrcs und cke on, video dac on */ + + xprintf("finished\r\n"); }