diff options
author | Your Name <you@example.com> | 2020-07-20 02:54:22 +0200 |
---|---|---|
committer | Your Name <you@example.com> | 2020-07-20 02:54:22 +0200 |
commit | c69f053c29faa47d0600f5b147835e970d9cf654 (patch) | |
tree | d97af2f279114c72c3db81ffb489c316fb3f6dd6 /README.md | |
download | AARM64-Disassembler-c69f053c29faa47d0600f5b147835e970d9cf654.tar.gz AARM64-Disassembler-c69f053c29faa47d0600f5b147835e970d9cf654.tar.bz2 AARM64-Disassembler-c69f053c29faa47d0600f5b147835e970d9cf654.zip |
Half-added some basic AARM64 instructions such as ADD, RET, MOV, NOP...
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..3860beb --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# AARM64-Disassembler + +Experimental disassembler for the AARM64 architecture. Not finished. + + +# Compile + +```make``` + +## Usage + +./disasm [AARM64 executable] + +## TODO +Fully implement current instructions to be able to fetch the actual instruction parameters. Implement the full AARM64 instruction set. +https://static.docs.arm.com/ddi0596/a/DDI_0596_ARM_a64_instruction_set_architecture.pdf |