Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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

parent 7f35144c
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -100,15 +100,21 @@ END(handle_interrupt)
;################### Non TLB Exception Handling #############################

ENTRY(EV_SWI)
	flag 1
	; TODO: implement this
	EXCEPTION_PROLOGUE
	b   ret_from_exception
END(EV_SWI)

ENTRY(EV_DivZero)
	flag 1
	; TODO: implement this
	EXCEPTION_PROLOGUE
	b   ret_from_exception
END(EV_DivZero)

ENTRY(EV_DCError)
	flag 1
	; TODO: implement this
	EXCEPTION_PROLOGUE
	b   ret_from_exception
END(EV_DCError)

; ---------------------------------------------