From: Jillian Ye Date: Wed, 8 Apr 1998 19:46:08 +0000 (+0000) Subject: sce_main.c Fixing address used (line 100): DMA_D1_MADR -> DMA_D1_TADR X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1430343e6b2a86a86f3897a3e539fe1e27265547;p=binutils-gdb.git sce_main.c Fixing address used (line 100): DMA_D1_MADR -> DMA_D1_TADR --- diff --git a/sim/testsuite/sky/sce_main.c b/sim/testsuite/sky/sce_main.c index d6a74754c8d..522673d3128 100644 --- a/sim/testsuite/sky/sce_main.c +++ b/sim/testsuite/sky/sce_main.c @@ -97,7 +97,7 @@ void DMA_enable(void) { void start_DMA_ch1_source_chain(void* data) { *DMA_D_CTRL = 0x01; /* DMA enable */ *DMA_D1_QWC = 0x00; - *DMA_D1_MADR = (int)data; + *DMA_D1_TADR = (int)data; *DMA_D1_CHCR = MODE_CHAIN | DMA_START | DMA_Dn_CHCR__TTE; }