Improved code quality
This commit is contained in:
@ -3,6 +3,7 @@ package asm
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/cpu"
|
||||
@ -31,12 +32,12 @@ func (mem *Memory) Format(custom string) string {
|
||||
tmp.WriteString("+")
|
||||
}
|
||||
|
||||
tmp.WriteString(fmt.Sprint(mem.Offset))
|
||||
tmp.WriteString(strconv.Itoa(int(mem.Offset)))
|
||||
}
|
||||
|
||||
tmp.WriteString("], ")
|
||||
tmp.WriteString(custom)
|
||||
tmp.WriteString(", ")
|
||||
tmp.WriteString(fmt.Sprint(mem.Length))
|
||||
tmp.WriteString(strconv.Itoa(int(mem.Length)))
|
||||
return tmp.String()
|
||||
}
|
||||
|
Reference in New Issue
Block a user