Browse Source

riscv: make fpunoted print, not panic

We don't have FP yet, so we'll have to fix this later
when we understand it.

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Ronald G. Minnich 7 years ago
parent
commit
b4ddcd7c98
1 changed files with 2 additions and 1 deletions
  1. 2 1
      sys/src/9/riscv/main.c

+ 2 - 1
sys/src/9/riscv/main.c

@@ -602,7 +602,8 @@ void    exit(int _)
 
 void fpunoted(void)
 {
-	panic((char *)__func__);
+	print((char *)__func__);
+	print("NOT DOING IT. IT WILL HURT LATER\n");
 }
 
 void fpunotify(Ureg*_)