view 5pEV4X5h @ 10856:9cef5747a532

<oerjan> learn `revert <rev>" can be used to revert to a revision. See <http://codu.org/projects/hackbot/fshg/>. It is a builtin command so cannot be called from other commands.
author HackBot
date Sun, 30 Apr 2017 18:12:57 +0000
parents e7d860aee142
children
line wrap: on
line source

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