x86_64 arch + asm start

This commit is contained in:
2026-06-02 03:24:21 -04:00
parent c2a8c50a6d
commit 473ddab0d4
12 changed files with 200 additions and 11 deletions
+9
View File
@@ -122,6 +122,15 @@ impl From<String> for CompilerMsg {
}
}
impl From<&str> for CompilerMsg {
fn from(msg: &str) -> Self {
Self {
spans: Vec::new(),
msg: msg.to_string(),
}
}
}
impl<S: Into<String>> From<(S, Span)> for CompilerMsg {
fn from((msg, span): (S, Span)) -> Self {
Self {