assembler: we failing DSA with this one

This commit is contained in:
2025-06-25 14:31:53 +01:00
parent 9232f2ccab
commit 20a7d42adb
14 changed files with 508 additions and 38 deletions
+1 -3
View File
@@ -14,7 +14,5 @@ pub mod tokeniser;
pub fn load_source_bytes<P: AsRef<Path>>(p: P) -> Result<Vec<u8>, AssembleError> {
let path = p.as_ref();
let bytes = std::fs::read(path)?;
Ok(vec![])
Ok(std::fs::read(path)?)
}