Skip to content
Snippets Groups Projects
Unverified Commit aab94e6b authored by Koichi Shiraishi's avatar Koichi Shiraishi
Browse files

go: Update to latest keystone package API & Remove unnecessary else


- Currently can't building because not found const variables

- panic built-in function is always exist of program. Remove else and
  export 'ks' variable in the main function

Signed-off-by: default avatarKoichi Shiraishi <zchee.io@gmail.com>
parent 2d4b37b5
No related branches found
No related tags found
No related merge requests found
...@@ -14,19 +14,19 @@ import ( ...@@ -14,19 +14,19 @@ import (
func main() { func main() {
assembly := os.Args[1] assembly := os.Args[1]
if ks, err := keystone.New(keystone.ArchitectureX86, keystone.Mode32); err != nil { ks, err := keystone.New(keystone.ARCH_X86, keystone.MODE_32)
if err != nil {
panic(err) panic(err)
} else { }
defer ks.Close() defer ks.Close()
if err := ks.Option(keystone.OptionSyntax, keystone.OptionSyntaxIntel); err != nil { if err := ks.Option(keystone.OPT_SYNTAX, keystone.OPT_SYNTAX_INTEL); err != nil {
panic(fmt.Errorf("Could not set syntax option to intel")) panic(fmt.Errorf("Could not set syntax option to intel"))
} }
if insn, _, ok := ks.Assemble(assembly, 0); !ok { if insn, _, ok := ks.Assemble(assembly, 0); !ok {
panic(fmt.Errorf("Could not assemble instruction")) panic(fmt.Errorf("Could not assemble instruction"))
} else { } else {
fmt.Printf("%s: [%x]", assembly, insn) fmt.Printf("%s: [%x]", assembly, insn)
}
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment