diff options
author | Ulf Carlsson <md1ulfc@mdstud.chalmers.se> | 2000-03-27 21:05:04 +0000 |
---|---|---|
committer | Ulf Carlsson <md1ulfc@mdstud.chalmers.se> | 2000-03-27 21:05:04 +0000 |
commit | bf78a0c2204c5db7d03f193abdae9128a96d8e61 (patch) | |
tree | 2ae961a715b261d2ca19af290728c220db7b0ca8 /arch | |
parent | 6d3833d0e05897177ca0bc8ac5d80ff63d445c6c (diff) |
Use 16 FP registers as default.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips64/kernel/head.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips64/kernel/head.S b/arch/mips64/kernel/head.S index 0928b2b09..a0a0a96e6 100644 --- a/arch/mips64/kernel/head.S +++ b/arch/mips64/kernel/head.S @@ -1,4 +1,4 @@ -/* $Id: head.S,v 1.4 1999/11/23 17:12:49 ralf Exp $ +/* $Id: head.S,v 1.5 2000/03/16 04:04:32 kanoj Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive @@ -47,7 +47,7 @@ NESTED(kernel_entry, 16, sp) # kernel entry point CLI # disable interrupts mfc0 t0, CP0_STATUS - li t1, ~(ST0_CU1|ST0_CU2|ST0_CU3) + li t1, ~(ST0_CU1|ST0_CU2|ST0_CU3|ST0_FR) and t0, t1 or t0, (ST0_CU0|ST0_KX|ST0_SX) mtc0 t0, CP0_STATUS |