squid 2.0.3

A RISC-V emulator with AOT compilation for fuzzing
Documentation
1
2
3
4
5
6
7
//! Contains all the events that can be thrown by RISC-V instructions

/// The syscall event is thrown by the ECALL instruction
pub const EVENT_SYSCALL: &str = "builtin::syscall";

/// The breakpoint event is thrown by the EBREAK instruction
pub const EVENT_BREAKPOINT: &str = "builtin::breakpoint";