assembler: great leap forwards (more like the Cultural Revolution)

This commit is contained in:
2025-06-25 03:26:50 +01:00
parent ce76820b6d
commit 9232f2ccab
10 changed files with 172 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
use crate::error::AssembleError;
impl From<std::io::Error> for AssembleError {
fn from(err: std::io::Error) -> Self {
}
}