annotate 5pEV4X5h @ 10957:7e2de2db9b92

<oerjan> slwd long winded//s,to describe,for the description of,;s,to be,into a more,;s:,: shape,:;s,less,significantly less amount of,
author HackBot
date Fri, 26 May 2017 01:29:11 +0000
parents e7d860aee142
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10549
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
1 section .text
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
2 global _start
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
3
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
4 _start:
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
5
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
6 mov edx,len
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
7 mov ecx,msg
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
8 mov ebx,1
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
9 mov eax,4
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
10 int 0x80
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
11
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
12 mov eax,1
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
13 int 0x80
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
14
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
15 section .data
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
16
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
17 msg db 'Assembly is a land of segmentation faults and insanity',0xa ;the entry
e7d860aee142 <moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
HackBot
parents:
diff changeset
18 len equ $ - msg