mirror of https://github.com/x64dbg/zydis
Merge branch 'develop' of github.com:zyantific/zyan-disassembler-engine into develop
This commit is contained in:
commit
805a407395
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Created by https://www.gitignore.io/api/c,c++,cmake
|
||||
|
||||
### C ###
|
||||
|
@ -76,3 +75,8 @@ Makefile
|
|||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
CTestTestfile.cmake
|
||||
|
||||
|
||||
# MacOS
|
||||
.DS_Store
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env python
|
||||
"""Process script copy & paste template."""
|
||||
|
||||
import json
|
||||
import collections
|
||||
import re
|
||||
|
||||
with open('instructions.json') as fi:
|
||||
fi = fi.read()
|
||||
|
||||
data = json.loads(fi, object_pairs_hook=collections.OrderedDict)
|
||||
defs = data['definitions']
|
||||
|
||||
# ... processing code here ...
|
||||
|
||||
with open('instructions.json', 'w') as of:
|
||||
json.dump(data, of)
|
Loading…
Reference in New Issue