lib_rv32_asm/error.rs
1/// Enumeration of possible errors when assembling a program.
2#[derive(Debug, PartialEq)]
3pub enum AssemblerError {
4 InvalidOperationError,
5 NoSuchLabelError,
6 NoSuchRegisterError,
7 WrongOperandTypeError,
8 TooManyTokensError,
9 TooFewTokensError,
10 ImmediateTooLargeError,
11 InvalidImmediateError,
12 IOError,
13}