Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Srikanth

Srikanth

Srikanth has asked 3 questions and find answers to 1 problems.

Stats

116
EtPoint
46
Vote count
3
questions
1
answers

About

; Define variables in the data section
SECTION .DATA
    hello:     db 'Hello world!',10
    helloLen:  equ $-hello

; Code goes in the text section
SECTION .TEXT
    GLOBAL _start 

_start:
    mov eax,4            ; 'write' system call = 4
    mov ebx,1            ; file descriptor 1 = STDOUT
    mov ecx,hello        ; string to write
    mov edx,helloLen     ; length of string to write
    int 80h              ; call the kernel

    ; Terminate program
    mov eax,1            ; 'exit' system call
    mov ebx,0            ; exit with error code 0
    int 80h              ; call the kernel