build from inception

This commit is contained in:
lenovo
2022-10-22 14:15:43 +02:00
commit c16ad4963d
27 changed files with 1907 additions and 0 deletions

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