annotate 5pEV4X5h @ 10557:23e8673c32c3

<moonythedwarf> ` cd nasmbuild/nasm-2.13rc9; ./configure > confoutput
author HackBot
date Thu, 30 Mar 2017 21:05:13 +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