Commit 814a5850 authored by Vineet Gupta's avatar Vineet Gupta

ARCv2: make unimplemented vectors as no-ops rather than halt core

Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 7f35144c
...@@ -100,15 +100,21 @@ END(handle_interrupt) ...@@ -100,15 +100,21 @@ END(handle_interrupt)
;################### Non TLB Exception Handling ############################# ;################### Non TLB Exception Handling #############################
ENTRY(EV_SWI) ENTRY(EV_SWI)
flag 1 ; TODO: implement this
EXCEPTION_PROLOGUE
b ret_from_exception
END(EV_SWI) END(EV_SWI)
ENTRY(EV_DivZero) ENTRY(EV_DivZero)
flag 1 ; TODO: implement this
EXCEPTION_PROLOGUE
b ret_from_exception
END(EV_DivZero) END(EV_DivZero)
ENTRY(EV_DCError) ENTRY(EV_DCError)
flag 1 ; TODO: implement this
EXCEPTION_PROLOGUE
b ret_from_exception
END(EV_DCError) END(EV_DCError)
; --------------------------------------------- ; ---------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment