Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
hello-world
/
3d9b9ed359012f2d5485c91f5f79062a68fffc72
/
.
/
hello-i386-linux.s
blob: 20aa3df82ee7df47cd88ae8f423651f9ee97066d [
file
] [
log
] [
blame
] [
raw
]
.section .rodata
helloworld
:
.string
"Hello world\n"
.text
.global _start
_start
:
movl
$
12
,
%edx
movl
$
helloworld
,
%ecx
movl
$
1
,
%ebx
movl
$
4
,
%eax
int
$
0x80
movl
$
0
,
%ebx
movl
$
1
,
%eax
int
$
0x80