Fixed assembler register symbols

pull/17/head
Erin 2023-11-10 09:51:01 +01:00
parent 36a4fc71b2
commit f8793cbe77
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ pub fn assembler(
label::setup(&mut engine, &mut module, Rc::clone(&obj));
// Registers
for n in 0_u8..255 {
for n in 0_u8..=255 {
module.set_var(format!("r{n}"), n);
}