Merge branch 'develop' of github.com:zyantific/zyan-disassembler-engine into develop

This commit is contained in:
flobernd 2016-11-28 10:48:10 +01:00
commit 805a407395
3 changed files with 2307 additions and 992 deletions

6
.gitignore vendored
View File

@ -1,4 +1,3 @@
# Created by https://www.gitignore.io/api/c,c++,cmake # Created by https://www.gitignore.io/api/c,c++,cmake
### C ### ### C ###
@ -76,3 +75,8 @@ Makefile
cmake_install.cmake cmake_install.cmake
install_manifest.txt install_manifest.txt
CTestTestfile.cmake CTestTestfile.cmake
# MacOS
.DS_Store

File diff suppressed because it is too large Load Diff

17
assets/process.py Executable file
View File

@ -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)