-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelloasm.s
More file actions
32 lines (22 loc) · 791 Bytes
/
helloasm.s
File metadata and controls
32 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# PURPOSE: Simple program that exits and
# returns a status code back to the Linux kernel
# INPUT: none
# OUTPUT: returns a status code
# This can be viewed by typing
# echo $?
# after running the program
# VARIABLES:
# %eax holds the system call number
# %ebx holds the return status
.section .data
.section .text
.globl _start
_start:
movl $1, %eax # this is the
# linux kernel command number (system call)
# for exiting a program
movl $3, %ebx # this is the
# status number
# we will return to the operating system.
int $0x80 # this wakes up the kernel to run
# the exit command