common: use prelude in all files

This commit is contained in:
2025-06-15 16:02:46 +01:00
parent 423d768e40
commit bffdf8c7bc
7 changed files with 16 additions and 19 deletions
+2 -3
View File
@@ -1,8 +1,7 @@
//! Various types of arguments that instructions can take, alongside encoding and decoding logic.
use crate::common::instructions::{RegisterParseError, encode::Encode};
use super::Register;
use crate::common::instructions::Encode;
use crate::common::prelude::*;
/// A list of errors that can be returned when decoding instruction arguments.
#[derive(Debug)]