changeset 10549:e7d860aee142

<moonythedwarf> fetch https://pastebin.com/raw/5pEV4X5h
author HackBot
date Thu, 30 Mar 2017 20:49:36 +0000
parents 11423d980e1c
children d4fa3a75dbdd
files 5pEV4X5h
diffstat 1 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/5pEV4X5h	Thu Mar 30 20:49:36 2017 +0000
@@ -0,0 +1,18 @@
+section     .text
+global      _start                              
+
+_start:                                         
+
+    mov     edx,len                            
+    mov     ecx,msg                             
+    mov     ebx,1                               
+    mov     eax,4                               
+    int     0x80                                
+
+    mov     eax,1                               
+    int     0x80                                
+
+section     .data
+
+msg     db  'Assembly is a land of segmentation faults and insanity',0xa ;the entry
+len     equ $ - msg
\ No newline at end of file