Merge branch 'master' into comments-and-refactors

This commit is contained in:
2025-02-28 15:14:47 +00:00
4 changed files with 116 additions and 108 deletions

View File

@@ -199,8 +199,8 @@ object assemblyIR {
case Global(name) => s".globl $name"
case Text => ".text"
case RoData => ".section .rodata"
case Int(value) => s".int $value"
case Asciz(string) => s".asciz \"$string\""
case Int(value) => s"\t.int $value"
case Asciz(string) => s"\t.asciz \"$string\""
}
}