asmtutorials/hello32.s

32 lines
801 B
ArmAsm
Raw Normal View History

;; Hello World Program #1
;; Compile with: nasm -f elf hello.s
;; Link with: ld -m elf_i386 -o hello hello.o
;; Run with: ./hello
2018-04-25 15:41:35 +00:00
;; sys/unistd_32.h
%define SYS_write 4
%define SYS_exit 1
;; unistd.h
%define STDOUT 1
section .data
msg db "Hello You Beautiful Human", 0Ah
len equ $-msg ; NASM-supplied macro
section .text
global _start
_start:
mov edx, len
2018-04-25 15:41:35 +00:00
mov ecx, msg ; Address of the message (not the content)
mov ebx, STDOUT ; using STDOUT (see definition above)
mov eax, SYS_write ; Using WRITE in 32-bit mode?
2018-04-25 15:41:35 +00:00
int 80h ; Interrupt target. The 'h' means 'hexidecimal'
mov ebx, 0
mov eax, SYS_exit
2018-04-25 15:41:35 +00:00
int 80h