├── .github └── workflows │ └── publish.yml ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Installation.rst ├── Introduction.rst ├── Makefile ├── Support.rst ├── api │ ├── Code-Blocks.rst │ ├── Enums.rst │ ├── Functions.rst │ ├── IDB-Graphs.rst │ ├── Instructions.rst │ ├── Lines.rst │ ├── Miscellaneous.rst │ ├── Switch.rst │ ├── UI.rst │ ├── Xrefs.rst │ ├── index.rst │ ├── segments.rst │ └── tutorial-conventions.rst ├── conf.py ├── debugging.rst ├── examples │ ├── Capture-Huge-Screenshots.rst │ ├── Plotting-a-Call-Graph.rst │ └── index.rst ├── index.rst ├── make.bat ├── media │ ├── debugging │ │ ├── attach_dialog.PNG │ │ ├── break.PNG │ │ └── debugging_menu.PNG │ ├── examples │ │ ├── httpsys8_1_callgraph.png │ │ └── huge_callgraph.png │ ├── intro_demo │ │ ├── highlight_xrefs.png │ │ └── print_lines.png │ ├── meme_bring_in_the_logic_probe_small.jpg │ ├── plugins │ │ ├── autostruct-1.png │ │ ├── autostruct-2.png │ │ ├── autostruct-3.png │ │ ├── autostruct-4.png │ │ ├── autostruct-5.png │ │ ├── autostruct-6.png │ │ ├── copy-current-bytes.png │ │ ├── copy-selected-bytes.png │ │ ├── cursor-at-line.png │ │ ├── first-meaningful-output.png │ │ ├── meaningful-output.png │ │ ├── xrefsgraph-1.png │ │ ├── xrefsgraph-2.png │ │ └── xrefsgraph-3.png │ ├── sark-pacman_small.jpg │ └── ui │ │ └── top-level-menu.png └── plugins │ ├── autostruct.rst │ ├── index.rst │ ├── installation.rst │ ├── meaningful.rst │ ├── quick_copy.rst │ └── xrefsgraph.rst ├── media ├── autostruct-demo.gif └── sark-pacman.jpg ├── plugins ├── README.rst ├── autoenum.py ├── autostruct.py ├── function_flow.py ├── function_strings.py ├── highlight_calls.py ├── lca.py ├── meaningful.py ├── plugin_loader.py ├── ptvsd_enable.py ├── quick_copy.py ├── requirements.txt └── xrefsgraph.py ├── pyproject.toml ├── sark ├── __init__.py ├── code │ ├── __init__.py │ ├── base.py │ ├── function.py │ ├── instruction.py │ ├── intel.py │ ├── line.py │ ├── segment.py │ ├── switch.py │ └── xref.py ├── codeblock.py ├── core.py ├── data.py ├── debug.py ├── enum.py ├── exceptions.py ├── graph.py ├── ipython.py ├── plumbing.py ├── qt.py ├── structure.py └── ui.py └── tests ├── README.rst ├── approvaltests_config.json ├── approved_files ├── SimpleTest.test_api_sampler.approved.txt ├── SimpleTest.test_codeblocks.approved.txt ├── SimpleTest.test_comments.approved.txt ├── SimpleTest.test_data.approved.txt ├── SimpleTest.test_enum.approved.txt ├── SimpleTest.test_functions.approved.txt ├── SimpleTest.test_idat.approved.txt ├── SimpleTest.test_idat_data_dumper.approved.txt ├── SimpleTest.test_instructions.approved.txt ├── SimpleTest.test_modify_block_color.approved.txt ├── SimpleTest.test_phrase_dumper.approved.txt └── SimpleTest.test_segments.approved.txt ├── binary_samples ├── simple.out ├── simple.out.i64 └── sources │ └── simple.c ├── config.json ├── dumpers ├── api_sampler.py ├── block_color_modifier.py ├── codeblock_dumper.py ├── data_dumper.py ├── dumper_helper.py ├── dumper_wrapper.py ├── enum_dumper.py ├── function_dumper.py ├── instruction_dumper.py ├── phrase_dumper.py ├── segment_dumper.py └── simple_comment_dumper.py ├── testhelper.py └── tests.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/Installation.rst -------------------------------------------------------------------------------- /docs/Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/Introduction.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/Support.rst -------------------------------------------------------------------------------- /docs/api/Code-Blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Code-Blocks.rst -------------------------------------------------------------------------------- /docs/api/Enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Enums.rst -------------------------------------------------------------------------------- /docs/api/Functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Functions.rst -------------------------------------------------------------------------------- /docs/api/IDB-Graphs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/IDB-Graphs.rst -------------------------------------------------------------------------------- /docs/api/Instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Instructions.rst -------------------------------------------------------------------------------- /docs/api/Lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Lines.rst -------------------------------------------------------------------------------- /docs/api/Miscellaneous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Miscellaneous.rst -------------------------------------------------------------------------------- /docs/api/Switch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Switch.rst -------------------------------------------------------------------------------- /docs/api/UI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/UI.rst -------------------------------------------------------------------------------- /docs/api/Xrefs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/Xrefs.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/segments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/segments.rst -------------------------------------------------------------------------------- /docs/api/tutorial-conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/api/tutorial-conventions.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/examples/Capture-Huge-Screenshots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/examples/Capture-Huge-Screenshots.rst -------------------------------------------------------------------------------- /docs/examples/Plotting-a-Call-Graph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/examples/Plotting-a-Call-Graph.rst -------------------------------------------------------------------------------- /docs/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/examples/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/media/debugging/attach_dialog.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/debugging/attach_dialog.PNG -------------------------------------------------------------------------------- /docs/media/debugging/break.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/debugging/break.PNG -------------------------------------------------------------------------------- /docs/media/debugging/debugging_menu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/debugging/debugging_menu.PNG -------------------------------------------------------------------------------- /docs/media/examples/httpsys8_1_callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/examples/httpsys8_1_callgraph.png -------------------------------------------------------------------------------- /docs/media/examples/huge_callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/examples/huge_callgraph.png -------------------------------------------------------------------------------- /docs/media/intro_demo/highlight_xrefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/intro_demo/highlight_xrefs.png -------------------------------------------------------------------------------- /docs/media/intro_demo/print_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/intro_demo/print_lines.png -------------------------------------------------------------------------------- /docs/media/meme_bring_in_the_logic_probe_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/meme_bring_in_the_logic_probe_small.jpg -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-1.png -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-2.png -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-3.png -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-4.png -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-5.png -------------------------------------------------------------------------------- /docs/media/plugins/autostruct-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/autostruct-6.png -------------------------------------------------------------------------------- /docs/media/plugins/copy-current-bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/copy-current-bytes.png -------------------------------------------------------------------------------- /docs/media/plugins/copy-selected-bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/copy-selected-bytes.png -------------------------------------------------------------------------------- /docs/media/plugins/cursor-at-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/cursor-at-line.png -------------------------------------------------------------------------------- /docs/media/plugins/first-meaningful-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/first-meaningful-output.png -------------------------------------------------------------------------------- /docs/media/plugins/meaningful-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/meaningful-output.png -------------------------------------------------------------------------------- /docs/media/plugins/xrefsgraph-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/xrefsgraph-1.png -------------------------------------------------------------------------------- /docs/media/plugins/xrefsgraph-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/xrefsgraph-2.png -------------------------------------------------------------------------------- /docs/media/plugins/xrefsgraph-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/plugins/xrefsgraph-3.png -------------------------------------------------------------------------------- /docs/media/sark-pacman_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/sark-pacman_small.jpg -------------------------------------------------------------------------------- /docs/media/ui/top-level-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/media/ui/top-level-menu.png -------------------------------------------------------------------------------- /docs/plugins/autostruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/autostruct.rst -------------------------------------------------------------------------------- /docs/plugins/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/index.rst -------------------------------------------------------------------------------- /docs/plugins/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/installation.rst -------------------------------------------------------------------------------- /docs/plugins/meaningful.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/meaningful.rst -------------------------------------------------------------------------------- /docs/plugins/quick_copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/quick_copy.rst -------------------------------------------------------------------------------- /docs/plugins/xrefsgraph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/docs/plugins/xrefsgraph.rst -------------------------------------------------------------------------------- /media/autostruct-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/media/autostruct-demo.gif -------------------------------------------------------------------------------- /media/sark-pacman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/media/sark-pacman.jpg -------------------------------------------------------------------------------- /plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/README.rst -------------------------------------------------------------------------------- /plugins/autoenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/autoenum.py -------------------------------------------------------------------------------- /plugins/autostruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/autostruct.py -------------------------------------------------------------------------------- /plugins/function_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/function_flow.py -------------------------------------------------------------------------------- /plugins/function_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/function_strings.py -------------------------------------------------------------------------------- /plugins/highlight_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/highlight_calls.py -------------------------------------------------------------------------------- /plugins/lca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/lca.py -------------------------------------------------------------------------------- /plugins/meaningful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/meaningful.py -------------------------------------------------------------------------------- /plugins/plugin_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/plugin_loader.py -------------------------------------------------------------------------------- /plugins/ptvsd_enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/ptvsd_enable.py -------------------------------------------------------------------------------- /plugins/quick_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/quick_copy.py -------------------------------------------------------------------------------- /plugins/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/requirements.txt -------------------------------------------------------------------------------- /plugins/xrefsgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/plugins/xrefsgraph.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/__init__.py -------------------------------------------------------------------------------- /sark/code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/__init__.py -------------------------------------------------------------------------------- /sark/code/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/base.py -------------------------------------------------------------------------------- /sark/code/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/function.py -------------------------------------------------------------------------------- /sark/code/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/instruction.py -------------------------------------------------------------------------------- /sark/code/intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/intel.py -------------------------------------------------------------------------------- /sark/code/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/line.py -------------------------------------------------------------------------------- /sark/code/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/segment.py -------------------------------------------------------------------------------- /sark/code/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/switch.py -------------------------------------------------------------------------------- /sark/code/xref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/code/xref.py -------------------------------------------------------------------------------- /sark/codeblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/codeblock.py -------------------------------------------------------------------------------- /sark/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/core.py -------------------------------------------------------------------------------- /sark/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/data.py -------------------------------------------------------------------------------- /sark/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/debug.py -------------------------------------------------------------------------------- /sark/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/enum.py -------------------------------------------------------------------------------- /sark/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/exceptions.py -------------------------------------------------------------------------------- /sark/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/graph.py -------------------------------------------------------------------------------- /sark/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/ipython.py -------------------------------------------------------------------------------- /sark/plumbing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/plumbing.py -------------------------------------------------------------------------------- /sark/qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/qt.py -------------------------------------------------------------------------------- /sark/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/structure.py -------------------------------------------------------------------------------- /sark/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/sark/ui.py -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/approvaltests_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "subdirectory": "approved_files" 3 | } -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_api_sampler.approved.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_codeblocks.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_codeblocks.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_comments.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_comments.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_data.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_data.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_enum.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_enum.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_functions.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_functions.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_idat.approved.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_idat_data_dumper.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_idat_data_dumper.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_instructions.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_instructions.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_modify_block_color.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_modify_block_color.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_phrase_dumper.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_phrase_dumper.approved.txt -------------------------------------------------------------------------------- /tests/approved_files/SimpleTest.test_segments.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/approved_files/SimpleTest.test_segments.approved.txt -------------------------------------------------------------------------------- /tests/binary_samples/simple.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/binary_samples/simple.out -------------------------------------------------------------------------------- /tests/binary_samples/simple.out.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/binary_samples/simple.out.i64 -------------------------------------------------------------------------------- /tests/binary_samples/sources/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/binary_samples/sources/simple.c -------------------------------------------------------------------------------- /tests/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/config.json -------------------------------------------------------------------------------- /tests/dumpers/api_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/api_sampler.py -------------------------------------------------------------------------------- /tests/dumpers/block_color_modifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/block_color_modifier.py -------------------------------------------------------------------------------- /tests/dumpers/codeblock_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/codeblock_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/data_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/data_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/dumper_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/dumper_helper.py -------------------------------------------------------------------------------- /tests/dumpers/dumper_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/dumper_wrapper.py -------------------------------------------------------------------------------- /tests/dumpers/enum_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/enum_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/function_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/function_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/instruction_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/instruction_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/phrase_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/phrase_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/segment_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/segment_dumper.py -------------------------------------------------------------------------------- /tests/dumpers/simple_comment_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/dumpers/simple_comment_dumper.py -------------------------------------------------------------------------------- /tests/testhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/testhelper.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/Sark/HEAD/tests/tests.py --------------------------------------------------------------------------------