├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── images ├── invcond.png ├── qt_memory.png └── visual.png ├── install.sh ├── plasma ├── __init__.py ├── lib │ ├── __init__.py │ ├── analyzer.py │ ├── api.py │ ├── arch │ │ ├── __init__.py │ │ ├── arm │ │ │ ├── __init__.py │ │ │ ├── analyzer.c │ │ │ ├── output.py │ │ │ ├── process_ast.py │ │ │ └── utils.py │ │ ├── mips │ │ │ ├── __init__.py │ │ │ ├── analyzer.c │ │ │ ├── output.py │ │ │ ├── process_ast.py │ │ │ └── utils.py │ │ └── x86 │ │ │ ├── __init__.py │ │ │ ├── analyzer.c │ │ │ ├── int80.py │ │ │ ├── output.py │ │ │ ├── process_ast.py │ │ │ └── utils.py │ ├── ast.py │ ├── colors.py │ ├── consts.py │ ├── custom_colors.py │ ├── database.py │ ├── disassembler.py │ ├── exceptions.py │ ├── fileformat │ │ ├── __init__.py │ │ ├── binary.py │ │ ├── elf.py │ │ ├── pe.py │ │ ├── pefile2.py │ │ ├── raw.py │ │ └── relocations │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── amd64.py │ │ │ ├── arm.py │ │ │ ├── arm64.py │ │ │ ├── defines.py │ │ │ ├── generic.py │ │ │ ├── i386.py │ │ │ ├── mips.py │ │ │ ├── mips64.py │ │ │ ├── ppc.py │ │ │ └── ppc64.py │ ├── generate_ast.py │ ├── graph.py │ ├── memmap.py │ ├── memory.py │ ├── output.py │ ├── ui │ │ ├── __init__.py │ │ ├── console.py │ │ ├── disasmbox.py │ │ ├── inlineed.py │ │ ├── listbox.py │ │ ├── utils.py │ │ ├── vim.py │ │ ├── visual.py │ │ ├── widget.py │ │ └── window.py │ └── utils.py ├── main.py └── scripts │ ├── asm.py │ ├── crypto.py │ ├── disasm.py │ ├── strings.py │ └── xrefsto.py ├── requirements.txt ├── run_plasma.py ├── setup.py ├── test_plasma.py └── tests ├── analyzer ├── arrays.bin ├── arrays.c ├── arrays.py ├── arrays.rev ├── ifexit.bin ├── ifexit.c ├── ifexit.py ├── ifexit.rev ├── invert_cond.bin ├── invert_cond.c ├── invert_cond.py ├── invert_cond.rev ├── mips_prefetch.bin ├── mips_prefetch.py ├── mips_prefetch.rev ├── overlap.S ├── overlap.bin ├── overlap.py ├── overlap.rev ├── pusha.S ├── pusha.bin ├── pusha.py ├── pusha.rev ├── regsim.S ├── regsim.bin ├── regsim.py ├── regsim.rev ├── run.sh ├── stack.S ├── stack.bin ├── stack.py ├── stack.rev ├── switch.bin ├── switch.c ├── switch.py └── switch.rev ├── and1.bin ├── and1.c ├── and1.rev ├── and2.bin ├── and2.c ├── and2.rev ├── and3.bin ├── and3.c ├── and3.rev ├── and4.bin ├── and4.c ├── and4.rev ├── andor1.bin ├── andor1.c ├── andor1.rev ├── andor2.bin ├── andor2.c ├── andor2.rev ├── andor3.bin ├── andor3.c ├── andor3.rev ├── andor4.bin ├── andor4.c ├── andor4.rev ├── andor5.bin ├── andor5.c ├── andor5.rev ├── andor6.bin ├── andor6.c ├── andor6.rev ├── break1.bin ├── break1.c ├── break1.rev ├── break2.bin ├── break2.c ├── break2.rev ├── break3.bin ├── break3.c ├── break3.rev ├── canary_plt.bin ├── canary_plt.c ├── canary_plt.rev ├── chars1.bin ├── chars1.c ├── chars1.rev ├── continue1.bin ├── continue1.c ├── continue1.rev ├── continue2.bin ├── continue2.c ├── continue2.rev ├── continue3.bin ├── continue3.c ├── continue3.rev ├── diff.sh ├── dowhile1.bin ├── dowhile1.c ├── dowhile1.rev ├── dowhile2..rev ├── dowhile2.bin ├── dowhile2.c ├── dowhile2.rev ├── dowhile3.bin ├── dowhile3.c ├── dowhile3.rev ├── dowhile4.bin ├── dowhile4.c ├── dowhile4.rev ├── entryloop1.bin ├── entryloop1.c ├── entryloop1_0x4041b0.rev ├── goto1.bin ├── goto1.c ├── goto1.rev ├── goto2.bin ├── goto2.c ├── goto2.rev ├── goto3.bin ├── goto3.c ├── goto3.rev ├── goto4.bin ├── goto4.c ├── goto4.rev ├── goto5.bin ├── goto5.c ├── goto5.rev ├── goto6.bin ├── goto6.c ├── goto6.rev ├── goto7.bin ├── goto7.c ├── goto7.rev ├── goto8.bin ├── goto8.c ├── goto8.rev ├── goto9.bin ├── goto9.c ├── goto9.rev ├── gotoinloop1.bin ├── gotoinloop1.c ├── gotoinloop1.rev ├── gotoinloop10.bin ├── gotoinloop10.c ├── gotoinloop10.rev ├── gotoinloop11.bin ├── gotoinloop11.c ├── gotoinloop11.rev ├── gotoinloop12.bin ├── gotoinloop12.c ├── gotoinloop12.rev ├── gotoinloop13.bin ├── gotoinloop13.c ├── gotoinloop13.rev ├── gotoinloop14.bin ├── gotoinloop14.c ├── gotoinloop14.rev ├── gotoinloop15.bin ├── gotoinloop15.c ├── gotoinloop15.rev ├── gotoinloop16.bin ├── gotoinloop16.c ├── gotoinloop16.rev ├── gotoinloop17.bin ├── gotoinloop17.c ├── gotoinloop17.rev ├── gotoinloop18.bin ├── gotoinloop18.c ├── gotoinloop18.rev ├── gotoinloop19.bin ├── gotoinloop19.c ├── gotoinloop19.rev ├── gotoinloop2.bin ├── gotoinloop2.c ├── gotoinloop2.rev ├── gotoinloop20_2_nestedloop7.bin ├── gotoinloop20_2_nestedloop7.rev ├── gotoinloop20_nestedloop7.bin ├── gotoinloop20_nestedloop7.c ├── gotoinloop20_nestedloop7.rev ├── gotoinloop3.bin ├── gotoinloop3.c ├── gotoinloop3.rev ├── gotoinloop4.bin ├── gotoinloop4.c ├── gotoinloop4.rev ├── gotoinloop5.bin ├── gotoinloop5.c ├── gotoinloop5.rev ├── gotoinloop6.bin ├── gotoinloop6.c ├── gotoinloop6.rev ├── gotoinloop7.bin ├── gotoinloop7.c ├── gotoinloop7.rev ├── gotoinloop8.bin ├── gotoinloop8.c ├── gotoinloop8.rev ├── gotoinloop9.bin ├── gotoinloop9.c ├── gotoinloop9.rev ├── if1.bin ├── if1.c ├── if1.rev ├── if2.bin ├── if2.c ├── if2.rev ├── if3.bin ├── if3.c ├── if3.rev ├── if4.bin ├── if4.c ├── if4.rev ├── if5.bin ├── if5.c ├── if5.rev ├── if6.bin ├── if6.c ├── if6.rev ├── if7.bin ├── if7.c ├── if7.rev ├── if8.bin ├── if8.c ├── if8.rev ├── if9.bin ├── if9.c ├── if9.rev ├── jump_is_loop.bin ├── jump_is_loop.c ├── jump_is_loop.rev ├── loopends1.bin ├── loopends1.c ├── loopends1.rev ├── loopends2.bin ├── loopends2.c ├── loopends2.rev ├── loopinf1.bin ├── loopinf1.c ├── loopinf1.rev ├── loopinf2.bin ├── loopinf2.c ├── loopinf2.rev ├── loopinf3.bin ├── loopinf3.c ├── loopinf3.rev ├── loopinf4.bin ├── loopinf4.c ├── loopinf4.rev ├── nestedloop1.bin ├── nestedloop1.c ├── nestedloop1.rev ├── nestedloop2.bin ├── nestedloop2.c ├── nestedloop2.rev ├── nestedloop3.bin ├── nestedloop3.c ├── nestedloop3.rev ├── nestedloop4.bin ├── nestedloop4.c ├── nestedloop4.rev ├── nestedloop5.bin ├── nestedloop5.c ├── nestedloop5.rev ├── nestedloop6.bin ├── nestedloop6.c ├── nestedloop6.rev ├── nestedloop7.bin ├── nestedloop7.rev ├── or1.bin ├── or1.c ├── or1.rev ├── or2.bin ├── or2.c ├── or2.rev ├── or3.bin ├── or3.c ├── or3.rev ├── or4.bin ├── or4.c ├── or4.rev ├── pendu.bin ├── pendu.c ├── pendu____main.rev ├── pendu___imp___cexit.rev ├── pendu__main.rev ├── regen.sh ├── return1.bin ├── return1.c ├── return1.rev ├── return2.bin ├── return2.c ├── return2.rev ├── server.bin ├── server.c ├── server_connection_handler.rev ├── server_main.rev ├── shellcode.bin ├── shellcode.c ├── shellcode_0x0.rev ├── strlen.bin ├── strlen.c ├── strlen.rev ├── x86.bin ├── x86.c └── x86.rev /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | build 4 | *.so 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/README.md -------------------------------------------------------------------------------- /images/invcond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/images/invcond.png -------------------------------------------------------------------------------- /images/qt_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/images/qt_memory.png -------------------------------------------------------------------------------- /images/visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/images/visual.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/install.sh -------------------------------------------------------------------------------- /plasma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plasma/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/__init__.py -------------------------------------------------------------------------------- /plasma/lib/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/analyzer.py -------------------------------------------------------------------------------- /plasma/lib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/api.py -------------------------------------------------------------------------------- /plasma/lib/arch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plasma/lib/arch/arm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/arm/__init__.py -------------------------------------------------------------------------------- /plasma/lib/arch/arm/analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/arm/analyzer.c -------------------------------------------------------------------------------- /plasma/lib/arch/arm/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/arm/output.py -------------------------------------------------------------------------------- /plasma/lib/arch/arm/process_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/arm/process_ast.py -------------------------------------------------------------------------------- /plasma/lib/arch/arm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/arm/utils.py -------------------------------------------------------------------------------- /plasma/lib/arch/mips/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/mips/__init__.py -------------------------------------------------------------------------------- /plasma/lib/arch/mips/analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/mips/analyzer.c -------------------------------------------------------------------------------- /plasma/lib/arch/mips/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/mips/output.py -------------------------------------------------------------------------------- /plasma/lib/arch/mips/process_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/mips/process_ast.py -------------------------------------------------------------------------------- /plasma/lib/arch/mips/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/mips/utils.py -------------------------------------------------------------------------------- /plasma/lib/arch/x86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/__init__.py -------------------------------------------------------------------------------- /plasma/lib/arch/x86/analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/analyzer.c -------------------------------------------------------------------------------- /plasma/lib/arch/x86/int80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/int80.py -------------------------------------------------------------------------------- /plasma/lib/arch/x86/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/output.py -------------------------------------------------------------------------------- /plasma/lib/arch/x86/process_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/process_ast.py -------------------------------------------------------------------------------- /plasma/lib/arch/x86/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/arch/x86/utils.py -------------------------------------------------------------------------------- /plasma/lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ast.py -------------------------------------------------------------------------------- /plasma/lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/colors.py -------------------------------------------------------------------------------- /plasma/lib/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/consts.py -------------------------------------------------------------------------------- /plasma/lib/custom_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/custom_colors.py -------------------------------------------------------------------------------- /plasma/lib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/database.py -------------------------------------------------------------------------------- /plasma/lib/disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/disassembler.py -------------------------------------------------------------------------------- /plasma/lib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/exceptions.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plasma/lib/fileformat/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/binary.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/elf.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/pe.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/pefile2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/pefile2.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/raw.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/LICENSE -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/README -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/__init__.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/amd64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/amd64.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/arm.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/arm64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/arm64.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/defines.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/generic.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/i386.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/i386.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/mips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/mips.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/mips64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/mips64.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/ppc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/ppc.py -------------------------------------------------------------------------------- /plasma/lib/fileformat/relocations/ppc64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/fileformat/relocations/ppc64.py -------------------------------------------------------------------------------- /plasma/lib/generate_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/generate_ast.py -------------------------------------------------------------------------------- /plasma/lib/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/graph.py -------------------------------------------------------------------------------- /plasma/lib/memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/memmap.py -------------------------------------------------------------------------------- /plasma/lib/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/memory.py -------------------------------------------------------------------------------- /plasma/lib/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/output.py -------------------------------------------------------------------------------- /plasma/lib/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plasma/lib/ui/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/console.py -------------------------------------------------------------------------------- /plasma/lib/ui/disasmbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/disasmbox.py -------------------------------------------------------------------------------- /plasma/lib/ui/inlineed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/inlineed.py -------------------------------------------------------------------------------- /plasma/lib/ui/listbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/listbox.py -------------------------------------------------------------------------------- /plasma/lib/ui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/utils.py -------------------------------------------------------------------------------- /plasma/lib/ui/vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/vim.py -------------------------------------------------------------------------------- /plasma/lib/ui/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/visual.py -------------------------------------------------------------------------------- /plasma/lib/ui/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/widget.py -------------------------------------------------------------------------------- /plasma/lib/ui/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/ui/window.py -------------------------------------------------------------------------------- /plasma/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/lib/utils.py -------------------------------------------------------------------------------- /plasma/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/main.py -------------------------------------------------------------------------------- /plasma/scripts/asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/scripts/asm.py -------------------------------------------------------------------------------- /plasma/scripts/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/scripts/crypto.py -------------------------------------------------------------------------------- /plasma/scripts/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/scripts/disasm.py -------------------------------------------------------------------------------- /plasma/scripts/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/scripts/strings.py -------------------------------------------------------------------------------- /plasma/scripts/xrefsto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/plasma/scripts/xrefsto.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pefile 2 | pyelftools 3 | msgpack-python>=0.4.6 4 | nose 5 | -------------------------------------------------------------------------------- /run_plasma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/run_plasma.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/setup.py -------------------------------------------------------------------------------- /test_plasma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/test_plasma.py -------------------------------------------------------------------------------- /tests/analyzer/arrays.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/arrays.bin -------------------------------------------------------------------------------- /tests/analyzer/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/arrays.c -------------------------------------------------------------------------------- /tests/analyzer/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/arrays.py -------------------------------------------------------------------------------- /tests/analyzer/arrays.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/arrays.rev -------------------------------------------------------------------------------- /tests/analyzer/ifexit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/ifexit.bin -------------------------------------------------------------------------------- /tests/analyzer/ifexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/ifexit.c -------------------------------------------------------------------------------- /tests/analyzer/ifexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/ifexit.py -------------------------------------------------------------------------------- /tests/analyzer/ifexit.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/ifexit.rev -------------------------------------------------------------------------------- /tests/analyzer/invert_cond.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/invert_cond.bin -------------------------------------------------------------------------------- /tests/analyzer/invert_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/invert_cond.c -------------------------------------------------------------------------------- /tests/analyzer/invert_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/invert_cond.py -------------------------------------------------------------------------------- /tests/analyzer/invert_cond.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/invert_cond.rev -------------------------------------------------------------------------------- /tests/analyzer/mips_prefetch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/mips_prefetch.bin -------------------------------------------------------------------------------- /tests/analyzer/mips_prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/mips_prefetch.py -------------------------------------------------------------------------------- /tests/analyzer/mips_prefetch.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/mips_prefetch.rev -------------------------------------------------------------------------------- /tests/analyzer/overlap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/overlap.S -------------------------------------------------------------------------------- /tests/analyzer/overlap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/overlap.bin -------------------------------------------------------------------------------- /tests/analyzer/overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/overlap.py -------------------------------------------------------------------------------- /tests/analyzer/overlap.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/overlap.rev -------------------------------------------------------------------------------- /tests/analyzer/pusha.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/pusha.S -------------------------------------------------------------------------------- /tests/analyzer/pusha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/pusha.bin -------------------------------------------------------------------------------- /tests/analyzer/pusha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/pusha.py -------------------------------------------------------------------------------- /tests/analyzer/pusha.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/pusha.rev -------------------------------------------------------------------------------- /tests/analyzer/regsim.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/regsim.S -------------------------------------------------------------------------------- /tests/analyzer/regsim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/regsim.bin -------------------------------------------------------------------------------- /tests/analyzer/regsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/regsim.py -------------------------------------------------------------------------------- /tests/analyzer/regsim.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/regsim.rev -------------------------------------------------------------------------------- /tests/analyzer/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/run.sh -------------------------------------------------------------------------------- /tests/analyzer/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/stack.S -------------------------------------------------------------------------------- /tests/analyzer/stack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/stack.bin -------------------------------------------------------------------------------- /tests/analyzer/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/stack.py -------------------------------------------------------------------------------- /tests/analyzer/stack.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/stack.rev -------------------------------------------------------------------------------- /tests/analyzer/switch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/switch.bin -------------------------------------------------------------------------------- /tests/analyzer/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/switch.c -------------------------------------------------------------------------------- /tests/analyzer/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/switch.py -------------------------------------------------------------------------------- /tests/analyzer/switch.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/analyzer/switch.rev -------------------------------------------------------------------------------- /tests/and1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and1.bin -------------------------------------------------------------------------------- /tests/and1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and1.c -------------------------------------------------------------------------------- /tests/and1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and1.rev -------------------------------------------------------------------------------- /tests/and2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and2.bin -------------------------------------------------------------------------------- /tests/and2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and2.c -------------------------------------------------------------------------------- /tests/and2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and2.rev -------------------------------------------------------------------------------- /tests/and3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and3.bin -------------------------------------------------------------------------------- /tests/and3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and3.c -------------------------------------------------------------------------------- /tests/and3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and3.rev -------------------------------------------------------------------------------- /tests/and4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and4.bin -------------------------------------------------------------------------------- /tests/and4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and4.c -------------------------------------------------------------------------------- /tests/and4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/and4.rev -------------------------------------------------------------------------------- /tests/andor1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor1.bin -------------------------------------------------------------------------------- /tests/andor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor1.c -------------------------------------------------------------------------------- /tests/andor1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor1.rev -------------------------------------------------------------------------------- /tests/andor2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor2.bin -------------------------------------------------------------------------------- /tests/andor2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor2.c -------------------------------------------------------------------------------- /tests/andor2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor2.rev -------------------------------------------------------------------------------- /tests/andor3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor3.bin -------------------------------------------------------------------------------- /tests/andor3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor3.c -------------------------------------------------------------------------------- /tests/andor3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor3.rev -------------------------------------------------------------------------------- /tests/andor4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor4.bin -------------------------------------------------------------------------------- /tests/andor4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor4.c -------------------------------------------------------------------------------- /tests/andor4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor4.rev -------------------------------------------------------------------------------- /tests/andor5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor5.bin -------------------------------------------------------------------------------- /tests/andor5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor5.c -------------------------------------------------------------------------------- /tests/andor5.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor5.rev -------------------------------------------------------------------------------- /tests/andor6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor6.bin -------------------------------------------------------------------------------- /tests/andor6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor6.c -------------------------------------------------------------------------------- /tests/andor6.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/andor6.rev -------------------------------------------------------------------------------- /tests/break1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break1.bin -------------------------------------------------------------------------------- /tests/break1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break1.c -------------------------------------------------------------------------------- /tests/break1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break1.rev -------------------------------------------------------------------------------- /tests/break2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break2.bin -------------------------------------------------------------------------------- /tests/break2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break2.c -------------------------------------------------------------------------------- /tests/break2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break2.rev -------------------------------------------------------------------------------- /tests/break3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break3.bin -------------------------------------------------------------------------------- /tests/break3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break3.c -------------------------------------------------------------------------------- /tests/break3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/break3.rev -------------------------------------------------------------------------------- /tests/canary_plt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/canary_plt.bin -------------------------------------------------------------------------------- /tests/canary_plt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/canary_plt.c -------------------------------------------------------------------------------- /tests/canary_plt.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/canary_plt.rev -------------------------------------------------------------------------------- /tests/chars1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/chars1.bin -------------------------------------------------------------------------------- /tests/chars1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/chars1.c -------------------------------------------------------------------------------- /tests/chars1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/chars1.rev -------------------------------------------------------------------------------- /tests/continue1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue1.bin -------------------------------------------------------------------------------- /tests/continue1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue1.c -------------------------------------------------------------------------------- /tests/continue1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue1.rev -------------------------------------------------------------------------------- /tests/continue2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue2.bin -------------------------------------------------------------------------------- /tests/continue2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue2.c -------------------------------------------------------------------------------- /tests/continue2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue2.rev -------------------------------------------------------------------------------- /tests/continue3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue3.bin -------------------------------------------------------------------------------- /tests/continue3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue3.c -------------------------------------------------------------------------------- /tests/continue3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/continue3.rev -------------------------------------------------------------------------------- /tests/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/diff.sh -------------------------------------------------------------------------------- /tests/dowhile1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile1.bin -------------------------------------------------------------------------------- /tests/dowhile1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile1.c -------------------------------------------------------------------------------- /tests/dowhile1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile1.rev -------------------------------------------------------------------------------- /tests/dowhile2..rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile2..rev -------------------------------------------------------------------------------- /tests/dowhile2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile2.bin -------------------------------------------------------------------------------- /tests/dowhile2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile2.c -------------------------------------------------------------------------------- /tests/dowhile2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile2.rev -------------------------------------------------------------------------------- /tests/dowhile3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile3.bin -------------------------------------------------------------------------------- /tests/dowhile3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile3.c -------------------------------------------------------------------------------- /tests/dowhile3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile3.rev -------------------------------------------------------------------------------- /tests/dowhile4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile4.bin -------------------------------------------------------------------------------- /tests/dowhile4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile4.c -------------------------------------------------------------------------------- /tests/dowhile4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/dowhile4.rev -------------------------------------------------------------------------------- /tests/entryloop1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/entryloop1.bin -------------------------------------------------------------------------------- /tests/entryloop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/entryloop1.c -------------------------------------------------------------------------------- /tests/entryloop1_0x4041b0.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/entryloop1_0x4041b0.rev -------------------------------------------------------------------------------- /tests/goto1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto1.bin -------------------------------------------------------------------------------- /tests/goto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto1.c -------------------------------------------------------------------------------- /tests/goto1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto1.rev -------------------------------------------------------------------------------- /tests/goto2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto2.bin -------------------------------------------------------------------------------- /tests/goto2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto2.c -------------------------------------------------------------------------------- /tests/goto2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto2.rev -------------------------------------------------------------------------------- /tests/goto3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto3.bin -------------------------------------------------------------------------------- /tests/goto3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto3.c -------------------------------------------------------------------------------- /tests/goto3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto3.rev -------------------------------------------------------------------------------- /tests/goto4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto4.bin -------------------------------------------------------------------------------- /tests/goto4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto4.c -------------------------------------------------------------------------------- /tests/goto4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto4.rev -------------------------------------------------------------------------------- /tests/goto5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto5.bin -------------------------------------------------------------------------------- /tests/goto5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto5.c -------------------------------------------------------------------------------- /tests/goto5.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto5.rev -------------------------------------------------------------------------------- /tests/goto6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto6.bin -------------------------------------------------------------------------------- /tests/goto6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto6.c -------------------------------------------------------------------------------- /tests/goto6.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto6.rev -------------------------------------------------------------------------------- /tests/goto7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto7.bin -------------------------------------------------------------------------------- /tests/goto7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto7.c -------------------------------------------------------------------------------- /tests/goto7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto7.rev -------------------------------------------------------------------------------- /tests/goto8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto8.bin -------------------------------------------------------------------------------- /tests/goto8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto8.c -------------------------------------------------------------------------------- /tests/goto8.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto8.rev -------------------------------------------------------------------------------- /tests/goto9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto9.bin -------------------------------------------------------------------------------- /tests/goto9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto9.c -------------------------------------------------------------------------------- /tests/goto9.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/goto9.rev -------------------------------------------------------------------------------- /tests/gotoinloop1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop1.bin -------------------------------------------------------------------------------- /tests/gotoinloop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop1.c -------------------------------------------------------------------------------- /tests/gotoinloop1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop1.rev -------------------------------------------------------------------------------- /tests/gotoinloop10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop10.bin -------------------------------------------------------------------------------- /tests/gotoinloop10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop10.c -------------------------------------------------------------------------------- /tests/gotoinloop10.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop10.rev -------------------------------------------------------------------------------- /tests/gotoinloop11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop11.bin -------------------------------------------------------------------------------- /tests/gotoinloop11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop11.c -------------------------------------------------------------------------------- /tests/gotoinloop11.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop11.rev -------------------------------------------------------------------------------- /tests/gotoinloop12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop12.bin -------------------------------------------------------------------------------- /tests/gotoinloop12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop12.c -------------------------------------------------------------------------------- /tests/gotoinloop12.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop12.rev -------------------------------------------------------------------------------- /tests/gotoinloop13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop13.bin -------------------------------------------------------------------------------- /tests/gotoinloop13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop13.c -------------------------------------------------------------------------------- /tests/gotoinloop13.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop13.rev -------------------------------------------------------------------------------- /tests/gotoinloop14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop14.bin -------------------------------------------------------------------------------- /tests/gotoinloop14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop14.c -------------------------------------------------------------------------------- /tests/gotoinloop14.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop14.rev -------------------------------------------------------------------------------- /tests/gotoinloop15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop15.bin -------------------------------------------------------------------------------- /tests/gotoinloop15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop15.c -------------------------------------------------------------------------------- /tests/gotoinloop15.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop15.rev -------------------------------------------------------------------------------- /tests/gotoinloop16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop16.bin -------------------------------------------------------------------------------- /tests/gotoinloop16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop16.c -------------------------------------------------------------------------------- /tests/gotoinloop16.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop16.rev -------------------------------------------------------------------------------- /tests/gotoinloop17.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop17.bin -------------------------------------------------------------------------------- /tests/gotoinloop17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop17.c -------------------------------------------------------------------------------- /tests/gotoinloop17.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop17.rev -------------------------------------------------------------------------------- /tests/gotoinloop18.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop18.bin -------------------------------------------------------------------------------- /tests/gotoinloop18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop18.c -------------------------------------------------------------------------------- /tests/gotoinloop18.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop18.rev -------------------------------------------------------------------------------- /tests/gotoinloop19.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop19.bin -------------------------------------------------------------------------------- /tests/gotoinloop19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop19.c -------------------------------------------------------------------------------- /tests/gotoinloop19.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop19.rev -------------------------------------------------------------------------------- /tests/gotoinloop2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop2.bin -------------------------------------------------------------------------------- /tests/gotoinloop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop2.c -------------------------------------------------------------------------------- /tests/gotoinloop2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop2.rev -------------------------------------------------------------------------------- /tests/gotoinloop20_2_nestedloop7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop20_2_nestedloop7.bin -------------------------------------------------------------------------------- /tests/gotoinloop20_2_nestedloop7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop20_2_nestedloop7.rev -------------------------------------------------------------------------------- /tests/gotoinloop20_nestedloop7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop20_nestedloop7.bin -------------------------------------------------------------------------------- /tests/gotoinloop20_nestedloop7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop20_nestedloop7.c -------------------------------------------------------------------------------- /tests/gotoinloop20_nestedloop7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop20_nestedloop7.rev -------------------------------------------------------------------------------- /tests/gotoinloop3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop3.bin -------------------------------------------------------------------------------- /tests/gotoinloop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop3.c -------------------------------------------------------------------------------- /tests/gotoinloop3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop3.rev -------------------------------------------------------------------------------- /tests/gotoinloop4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop4.bin -------------------------------------------------------------------------------- /tests/gotoinloop4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop4.c -------------------------------------------------------------------------------- /tests/gotoinloop4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop4.rev -------------------------------------------------------------------------------- /tests/gotoinloop5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop5.bin -------------------------------------------------------------------------------- /tests/gotoinloop5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop5.c -------------------------------------------------------------------------------- /tests/gotoinloop5.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop5.rev -------------------------------------------------------------------------------- /tests/gotoinloop6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop6.bin -------------------------------------------------------------------------------- /tests/gotoinloop6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop6.c -------------------------------------------------------------------------------- /tests/gotoinloop6.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop6.rev -------------------------------------------------------------------------------- /tests/gotoinloop7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop7.bin -------------------------------------------------------------------------------- /tests/gotoinloop7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop7.c -------------------------------------------------------------------------------- /tests/gotoinloop7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop7.rev -------------------------------------------------------------------------------- /tests/gotoinloop8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop8.bin -------------------------------------------------------------------------------- /tests/gotoinloop8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop8.c -------------------------------------------------------------------------------- /tests/gotoinloop8.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop8.rev -------------------------------------------------------------------------------- /tests/gotoinloop9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop9.bin -------------------------------------------------------------------------------- /tests/gotoinloop9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop9.c -------------------------------------------------------------------------------- /tests/gotoinloop9.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/gotoinloop9.rev -------------------------------------------------------------------------------- /tests/if1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if1.bin -------------------------------------------------------------------------------- /tests/if1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if1.c -------------------------------------------------------------------------------- /tests/if1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if1.rev -------------------------------------------------------------------------------- /tests/if2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if2.bin -------------------------------------------------------------------------------- /tests/if2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if2.c -------------------------------------------------------------------------------- /tests/if2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if2.rev -------------------------------------------------------------------------------- /tests/if3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if3.bin -------------------------------------------------------------------------------- /tests/if3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if3.c -------------------------------------------------------------------------------- /tests/if3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if3.rev -------------------------------------------------------------------------------- /tests/if4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if4.bin -------------------------------------------------------------------------------- /tests/if4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if4.c -------------------------------------------------------------------------------- /tests/if4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if4.rev -------------------------------------------------------------------------------- /tests/if5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if5.bin -------------------------------------------------------------------------------- /tests/if5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if5.c -------------------------------------------------------------------------------- /tests/if5.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if5.rev -------------------------------------------------------------------------------- /tests/if6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if6.bin -------------------------------------------------------------------------------- /tests/if6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if6.c -------------------------------------------------------------------------------- /tests/if6.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if6.rev -------------------------------------------------------------------------------- /tests/if7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if7.bin -------------------------------------------------------------------------------- /tests/if7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if7.c -------------------------------------------------------------------------------- /tests/if7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if7.rev -------------------------------------------------------------------------------- /tests/if8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if8.bin -------------------------------------------------------------------------------- /tests/if8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if8.c -------------------------------------------------------------------------------- /tests/if8.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if8.rev -------------------------------------------------------------------------------- /tests/if9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if9.bin -------------------------------------------------------------------------------- /tests/if9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if9.c -------------------------------------------------------------------------------- /tests/if9.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/if9.rev -------------------------------------------------------------------------------- /tests/jump_is_loop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/jump_is_loop.bin -------------------------------------------------------------------------------- /tests/jump_is_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/jump_is_loop.c -------------------------------------------------------------------------------- /tests/jump_is_loop.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/jump_is_loop.rev -------------------------------------------------------------------------------- /tests/loopends1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends1.bin -------------------------------------------------------------------------------- /tests/loopends1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends1.c -------------------------------------------------------------------------------- /tests/loopends1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends1.rev -------------------------------------------------------------------------------- /tests/loopends2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends2.bin -------------------------------------------------------------------------------- /tests/loopends2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends2.c -------------------------------------------------------------------------------- /tests/loopends2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopends2.rev -------------------------------------------------------------------------------- /tests/loopinf1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf1.bin -------------------------------------------------------------------------------- /tests/loopinf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf1.c -------------------------------------------------------------------------------- /tests/loopinf1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf1.rev -------------------------------------------------------------------------------- /tests/loopinf2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf2.bin -------------------------------------------------------------------------------- /tests/loopinf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf2.c -------------------------------------------------------------------------------- /tests/loopinf2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf2.rev -------------------------------------------------------------------------------- /tests/loopinf3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf3.bin -------------------------------------------------------------------------------- /tests/loopinf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf3.c -------------------------------------------------------------------------------- /tests/loopinf3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf3.rev -------------------------------------------------------------------------------- /tests/loopinf4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf4.bin -------------------------------------------------------------------------------- /tests/loopinf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf4.c -------------------------------------------------------------------------------- /tests/loopinf4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/loopinf4.rev -------------------------------------------------------------------------------- /tests/nestedloop1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop1.bin -------------------------------------------------------------------------------- /tests/nestedloop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop1.c -------------------------------------------------------------------------------- /tests/nestedloop1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop1.rev -------------------------------------------------------------------------------- /tests/nestedloop2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop2.bin -------------------------------------------------------------------------------- /tests/nestedloop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop2.c -------------------------------------------------------------------------------- /tests/nestedloop2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop2.rev -------------------------------------------------------------------------------- /tests/nestedloop3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop3.bin -------------------------------------------------------------------------------- /tests/nestedloop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop3.c -------------------------------------------------------------------------------- /tests/nestedloop3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop3.rev -------------------------------------------------------------------------------- /tests/nestedloop4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop4.bin -------------------------------------------------------------------------------- /tests/nestedloop4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop4.c -------------------------------------------------------------------------------- /tests/nestedloop4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop4.rev -------------------------------------------------------------------------------- /tests/nestedloop5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop5.bin -------------------------------------------------------------------------------- /tests/nestedloop5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop5.c -------------------------------------------------------------------------------- /tests/nestedloop5.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop5.rev -------------------------------------------------------------------------------- /tests/nestedloop6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop6.bin -------------------------------------------------------------------------------- /tests/nestedloop6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop6.c -------------------------------------------------------------------------------- /tests/nestedloop6.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop6.rev -------------------------------------------------------------------------------- /tests/nestedloop7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop7.bin -------------------------------------------------------------------------------- /tests/nestedloop7.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/nestedloop7.rev -------------------------------------------------------------------------------- /tests/or1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or1.bin -------------------------------------------------------------------------------- /tests/or1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or1.c -------------------------------------------------------------------------------- /tests/or1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or1.rev -------------------------------------------------------------------------------- /tests/or2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or2.bin -------------------------------------------------------------------------------- /tests/or2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or2.c -------------------------------------------------------------------------------- /tests/or2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or2.rev -------------------------------------------------------------------------------- /tests/or3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or3.bin -------------------------------------------------------------------------------- /tests/or3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or3.c -------------------------------------------------------------------------------- /tests/or3.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or3.rev -------------------------------------------------------------------------------- /tests/or4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or4.bin -------------------------------------------------------------------------------- /tests/or4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or4.c -------------------------------------------------------------------------------- /tests/or4.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/or4.rev -------------------------------------------------------------------------------- /tests/pendu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/pendu.bin -------------------------------------------------------------------------------- /tests/pendu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/pendu.c -------------------------------------------------------------------------------- /tests/pendu____main.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/pendu____main.rev -------------------------------------------------------------------------------- /tests/pendu___imp___cexit.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/pendu___imp___cexit.rev -------------------------------------------------------------------------------- /tests/pendu__main.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/pendu__main.rev -------------------------------------------------------------------------------- /tests/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/regen.sh -------------------------------------------------------------------------------- /tests/return1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return1.bin -------------------------------------------------------------------------------- /tests/return1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return1.c -------------------------------------------------------------------------------- /tests/return1.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return1.rev -------------------------------------------------------------------------------- /tests/return2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return2.bin -------------------------------------------------------------------------------- /tests/return2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return2.c -------------------------------------------------------------------------------- /tests/return2.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/return2.rev -------------------------------------------------------------------------------- /tests/server.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/server.bin -------------------------------------------------------------------------------- /tests/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/server.c -------------------------------------------------------------------------------- /tests/server_connection_handler.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/server_connection_handler.rev -------------------------------------------------------------------------------- /tests/server_main.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/server_main.rev -------------------------------------------------------------------------------- /tests/shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/shellcode.bin -------------------------------------------------------------------------------- /tests/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/shellcode.c -------------------------------------------------------------------------------- /tests/shellcode_0x0.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/shellcode_0x0.rev -------------------------------------------------------------------------------- /tests/strlen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/strlen.bin -------------------------------------------------------------------------------- /tests/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/strlen.c -------------------------------------------------------------------------------- /tests/strlen.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/strlen.rev -------------------------------------------------------------------------------- /tests/x86.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/x86.bin -------------------------------------------------------------------------------- /tests/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/x86.c -------------------------------------------------------------------------------- /tests/x86.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plasma-disassembler/plasma/HEAD/tests/x86.rev --------------------------------------------------------------------------------