Create learn asm repo
Repository for learning assembly language
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,17 @@
|
||||
|
||||
SECTION .data
|
||||
msg db 'cat!', 0Ah
|
||||
|
||||
SECTION .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov edx, 5
|
||||
mov ecx, msg
|
||||
mov ebx, 1
|
||||
mov eax, 4
|
||||
int 80h
|
||||
|
||||
mov ebx, 0
|
||||
mov eax, 1
|
||||
int 80h
|
||||
Binary file not shown.
Reference in New Issue
Block a user