From: Andrew Waterman Date: Fri, 30 Jun 2017 20:19:18 +0000 (-0700) Subject: Remove reference to H-mode in ECALL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a327416eac285f50dcbb04e8ddf89204c66ece02;p=riscv-isa-sim.git Remove reference to H-mode in ECALL --- diff --git a/riscv/insns/ecall.h b/riscv/insns/ecall.h index a933e4d..e298ac7 100644 --- a/riscv/insns/ecall.h +++ b/riscv/insns/ecall.h @@ -2,6 +2,6 @@ switch (STATE.prv) { case PRV_U: throw trap_user_ecall(); case PRV_S: throw trap_supervisor_ecall(); - case PRV_H: throw trap_hypervisor_ecall(); case PRV_M: throw trap_machine_ecall(); + default: abort(); }