Convert builtin ops into a pseudo-extension

This commit is contained in:
2020-09-26 22:00:27 +02:00
parent 1d444fd516
commit 3e0aaa71e9
18 changed files with 441 additions and 297 deletions
-6
View File
@@ -71,12 +71,6 @@ fn main() {
let parsed = crsn::asm::assemble(program, parsers.as_slice()).unwrap();
debug!("---");
for op in &parsed.ops {
debug!("{:?}", op);
}
debug!("---");
let thread = RunThread::new(ThreadToken(0), parsed, Addr(0), &[]);
thread.start().join().unwrap();