import data files
This commit is contained in:
2261
internal/data/x86.v0.2.csv
Normal file
2261
internal/data/x86.v0.2.csv
Normal file
File diff suppressed because it is too large
Load Diff
71029
internal/data/x86_64.xml
Normal file
71029
internal/data/x86_64.xml
Normal file
File diff suppressed because it is too large
Load Diff
14
script/data
Executable file
14
script/data
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
datadir="internal/data"
|
||||
|
||||
dl() {
|
||||
url=$1
|
||||
name=$(basename ${url})
|
||||
|
||||
mkdir -p ${datadir}
|
||||
curl --output ${datadir}/${name} ${url}
|
||||
}
|
||||
|
||||
dl https://raw.githubusercontent.com/golang/arch/master/x86/x86.v0.2.csv
|
||||
dl https://raw.githubusercontent.com/Maratyszcza/Opcodes/master/opcodes/x86_64.xml
|
||||
Reference in New Issue
Block a user