feat: enhance asmGenerator with additional registers and improve function call generation

Co-authored-by: Barf-Vader <Barf-Vader@users.noreply.github.com>
Co-authored-by: Gleb Koval
This commit is contained in:
Guy C
2025-02-25 02:02:57 +00:00
parent f30cf42c4b
commit 58d280462e
3 changed files with 136 additions and 109 deletions

View File

@@ -179,7 +179,7 @@ object assemblyIR {
override def toString(): String = this match {
case Byte => "byte " + ptr
case Word => "word " + ptr
case Word => "dword " + ptr // TODO check word/doubleword/quadword
case Unspecified => ""
}
}