From 31bcb1409eb50de0a237c0f42e1f0afa166699fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Rivi=C3=A8re?= Date: Mon, 22 Oct 2012 19:20:33 +0000 Subject: [PATCH] Fixed typo in interrupt initialization code. --- BaS_GNU/sources/BaS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_GNU/sources/BaS.c b/BaS_GNU/sources/BaS.c index a7c285a..2c5dc4f 100644 --- a/BaS_GNU/sources/BaS.c +++ b/BaS_GNU/sources/BaS.c @@ -94,7 +94,7 @@ void BaS(void) MCF_EPORT_EPIER = 0xfe; /* int 1-7 on */ MCF_EPORT_EPFR = 0xff; /* clear all pending interrupts */ MCF_INTC_IMRL = 0xffffff00; /* int 1-7 on */ - MCF_INTC_IMRH = 0x9ffffffe; /* psc3 and timer 0 int on */ + MCF_INTC_IMRH = 0xbffffffe; /* psc3 and timer 0 int on */ MCF_MMU_MMUCR = MCF_MMU_MMUCR_EN; /* MMU on */