Added build statistics
This commit is contained in:
@ -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("│ ")
|
||||
|
||||
|
Reference in New Issue
Block a user