ingester for opcodes xml

This commit is contained in:
Michael McLoughlin
2018-11-20 13:51:17 -06:00
parent 7c2990754f
commit 19c5bbb3c6
2 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package opcodesxml
import (
"fmt"
"testing"
)
func TestReadFile(t *testing.T) {
is, err := ReadFile("testdata/x86_64.xml")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%#v\n", is)
}