Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MPASM 0.20 KB | None | 0 0
  1. section .text
  2. global _start
  3. _start:
  4.         mov edx,len
  5.         mov ecx,msg
  6.         mov ebx,1
  7.         mov eax,4
  8.         int 0x80
  9.         mov ebx,0
  10.         mov eax,1
  11.         int 0x80
  12.         section .data
  13.         msg db 'Hello world',0x0A
  14.         len equ $ - msg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement