Added build statistics

This commit is contained in:
2025-02-05 23:10:50 +01:00
parent 12894dbcc5
commit 37afbde0da
6 changed files with 54 additions and 18 deletions

View File

@ -12,6 +12,15 @@ import (
func (f *Function) PrintInstructions() {
ansi.Dim.Println("╭──────────────────────────────────────────────────────────────────────────────╮")
if len(f.Input) > 0 {
for i, input := range f.Input {
ansi.Dim.Printf("│ %-44s%-32s", input.Name, f.CPU.Input[i])
ansi.Dim.Print(" │\n")
}
ansi.Dim.Println("├──────────────────────────────────────────────────────────────────────────────┤")
}
for i, x := range f.Assembler.Instructions {
ansi.Dim.Print("│ ")