osx/hello.asm
author Markus Bröker<broeker.markus@googlemail.com>
Fri, 20 Oct 2017 06:41:27 +0200
changeset 168 dfb60716880c
child 171 c6e0af68825a
permissions -rw-r--r--
Broken OSX Demo added

section .data
    msg db "Hello World!", 0x0a ; Die Nachricht
    len equ $-msg

section .text
global entryPoint

call entryPoint
jmp asm_exit

entryPoint:
    push dword len      ;; Länge des Texts
    push dword msg      ;; Der Text
    push dword 1        ;; stdout

	;; call write
    mov eax, 0x4
    sub esp, 4
    int 0x80

    ;; clean up 3 pushes
    add esp, 16

	ret
	
asm_exit:	
    mov eax, 0x1
	sub esp, 4
    int 0x80

	add esp, 4