Index: boot/arch/mips32/src/asm.S
===================================================================
--- boot/arch/mips32/src/asm.S	(revision c672195ba0ce13e32fcb9845587565475ce3dea1)
+++ boot/arch/mips32/src/asm.S	(revision dc790e1925c170ccee9c9bb7ad1b120264034506)
@@ -41,4 +41,15 @@
 
 start:
+	/*
+	 * Setup the CP0 configuration
+	 *  - Disable 64-bit kernel addressing mode
+	 *  - DIsable 64-bit supervisor adressing mode
+	 *  - Disable 64-bit user addressing mode
+	 */
+	mfc0 $a0, $status
+	la $a1, 0xffffff1f
+	and $a0, $a1, $a0
+	mtc0 $a0, $status
+	
 	/* Setup CPU map (on msim this code
 	   is executed in parallel on all CPUs,
