ok we have basic decimal math 👍

This commit is contained in:
SpookyDervish
2025-09-04 07:45:20 +10:00
parent 42e718d6d3
commit 459f53a4e1
8 changed files with 162 additions and 72 deletions

View File

@@ -28,7 +28,7 @@ def main():
generator.init()
compile_time = time()-start
print(f"Compiled in {round(compile_time, 1)} seconds.")
print(f"Compiled in {round(compile_time, 3)} seconds.")
system(f"nasm -felf64 {out_path}.asm")
system(f"ld -m elf_{arch} -o {out_path} {out_path}.o")