summaryrefslogtreecommitdiff
path: root/md/writeup/avr_disassembler.md
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2021-05-27 20:06:47 +0100
committerFreeArtMan <dos21h@gmail.com>2021-05-27 20:06:47 +0100
commite63ed8a651e5246f8698a9c1c3e540029710d0e9 (patch)
treecfd58d80345f17dc9f458bad88181811a89b3592 /md/writeup/avr_disassembler.md
parent9b9586b559edb387af804c52d2b593b711ce98be (diff)
downloadmd-content-e63ed8a651e5246f8698a9c1c3e540029710d0e9.tar.gz
md-content-e63ed8a651e5246f8698a9c1c3e540029710d0e9.zip
Update 10 articles from html to md
Diffstat (limited to 'md/writeup/avr_disassembler.md')
-rw-r--r--md/writeup/avr_disassembler.md67
1 files changed, 67 insertions, 0 deletions
diff --git a/md/writeup/avr_disassembler.md b/md/writeup/avr_disassembler.md
new file mode 100644
index 0000000..1ac88a9
--- /dev/null
+++ b/md/writeup/avr_disassembler.md
@@ -0,0 +1,67 @@
+title:Notes on videos
+keywords:math,statistics
+
+# AVR disassembler
+
+
+```text
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ AVR dissasembler +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ INDEX +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 1. Intro
+ 2. Example
+ 3. Usage
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ 1.Intro +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+
+Disassembler for Atmel AVR microcontrollers made for be fast and simple. No
+extra features only basicss. Converts binary file to AVR asm output.
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ 2.Example +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+Here is example output
+2411 CLR 0x11
+be1f OUT 0x3f , 0x1
+e5cf LDI 0xc , 0x5f
+e0d4 LDI 0xd , 0x4
+bfde OUT 0x3e , 0x1d
+bfcd OUT 0x3d , 0x1c
+e010 LDI 0x1 , 0x0
+e6a0 LDI 0xa , 0x60
+e0b0 LDI 0xb , 0x0
+ebee LDI 0xe , 0xbe
+e0f0 LDI 0xf , 0x0
+c002 RJMP +4
+9005 LPM 0x0
+920d ST 0x0 , 0x0
+36a0 CPI 0xa , 0x60
+07b1 CPC 0x1b , 0x11
+f7d9 BRBC 0x1 , -10
+e010 LDI 0x1 , 0x0
+e6a0 LDI 0xa , 0x60
+e0b0 LDI 0xb , 0x0
+c001 RJMP +2
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ 3.Usage +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+disavr file.bin file.asm
+```
+
+### Links
+https://github.com/FreeArtMan/dis_avr/
+
+
+## Downloads
+dis_avr0.1.zip
+10KiB - http://archive.main.lv/files/writeup/avr_disassembler/dis_avr0.1.zip \ No newline at end of file