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