This commit is contained in:
2026-05-01 21:51:54 -05:00
parent 50db8b9738
commit 9e6d9c6212
5 changed files with 4 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ ByteArray Assembler::assemble()
case vm::OperandType::Int8: bp.functions.at(function_id).code.append_int8((int8_t) *oper); break;
case vm::OperandType::Int16: bp.functions.at(function_id).code.append_int16((int16_t) *oper); break;
case vm::OperandType::Int32: bp.functions.at(function_id).code.append_int32(*oper); break;
case vm::OperandType::NoOperand: default:
case vm::OperandType::NoOperand: default: break;
}
if (tt.type != TokenType::Enter)