first docker compose

This commit is contained in:
hugogogo
2022-08-27 23:01:01 +02:00
parent 90680662fc
commit 9dedc02052
8 changed files with 53 additions and 33 deletions

Binary file not shown.

View File

@@ -0,0 +1,16 @@
SECTION .data
msg: db "Hi World",10
len: equ $-msg
SECTION .text
global main
main:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
mov ebx,0
mov eax,1
int 0x80