remove intermediate enum / directly encode assembly

This commit is contained in:
2026-06-11 21:49:04 -04:00
parent 91f5db6950
commit b03f755252
11 changed files with 414 additions and 668 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
use crate::{
arch::x86_64::Asm,
arch::x86_64::Code,
parser::{Node, cursor::Token},
};
pub mod x86_64;
pub enum AsmBlock {
X86_64(Asm),
X86_64(Code),
}
impl Node for AsmBlock {