assembler: small misc updates, I am tired

This commit is contained in:
2025-06-29 03:52:53 +01:00
parent 0528768947
commit 85e3d443cc
5 changed files with 55 additions and 19 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ impl std::fmt::Display for InstructionDecodeError {
match self {
Self::InvalidOpcode(code) => write!(f, "invalid opcode, got {code:x}")?,
Self::InvalidArgument(err) => {
write!(f, "invalid arguments, got an error {err}")?
write!(f, "invalid arguments, got an error {err}")?;
}
}