Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaoz committed Aug 19, 2023
1 parent 629600e commit 4339778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parser_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var (
symbolLine = regexp.MustCompile(`^\w+\s+<\w+>:$`)
dataLine = regexp.MustCompile(`^\w+:\s+\w+\s+.+$`)

registers = []string{"DI", "SI", "DX", "CX"}
registers = []string{"DI", "SI", "DX", "CX", "R8", "R9", "R10", "R11"}
)

type Line struct {
Expand Down
2 changes: 1 addition & 1 deletion parser_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var (
symbolLine = regexp.MustCompile(`^\w+\s+<\w+>:$`)
dataLine = regexp.MustCompile(`^\w+:\s+\w+\s+.+$`)

registers = []string{"R0", "R1", "R2", "R3"}
registers = []string{"R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7"}
)

type Line struct {
Expand Down

0 comments on commit 4339778

Please sign in to comment.