From 9550fe0687f64994790876f91003678f9e97f241 Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Tue, 18 Dec 2018 23:58:50 +0300 Subject: [PATCH] Remove ecall and *ret instructions from riscv::asm --- src/asm.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/asm.rs b/src/asm.rs index 14ab476..f9e3836 100644 --- a/src/asm.rs +++ b/src/asm.rs @@ -16,9 +16,5 @@ macro_rules! instruction { /// Priviledged ISA Instructions -instruction!(ecall, "ecall"); instruction!(ebreak, "ebreak"); -instruction!(uret, "uret"); -instruction!(sret, "sret"); -instruction!(mret, "mret"); instruction!(wfi, "wfi");