diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-01-01 02:30:02 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-01-01 02:30:02 +0400 |
commit | af61c71518baa787bec26d2c7d0afaeb7f640ca8 (patch) | |
tree | fbb0c2b0b2bf3cbebd32f2cd3a647f4304f2cd21 /src | |
parent | 1ce730b2b30be0ce1030eb9988534e360454d261 (diff) |
small updated: actual tab replaced with in formated string
Diffstat (limited to 'src')
-rw-r--r-- | src/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.go b/src/main.go index c671306..636b90f 100644 --- a/src/main.go +++ b/src/main.go @@ -234,7 +234,7 @@ func compileX86_64(ops[] Operation) { print("_start:") for i := 0; i < len(ops); i++ { - fmt.Printf(" ;; %s\n", ops[i].name) + fmt.Printf("\t;; %s\n", ops[i].name) fmt.Printf(X86_64map(ops[i])) } |