Create learn asm repo
Repository for learning assembly language
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
|
||||
%include '../lib/fl.asm'
|
||||
|
||||
SECTION .data
|
||||
msg1 db 'Cats and', 0Ah
|
||||
msg2 db 'Dogs', 0Ah
|
||||
|
||||
SECTION .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, msg1
|
||||
call sprint
|
||||
|
||||
mov eax, msg2
|
||||
call sprint
|
||||
|
||||
call quit
|
||||
Binary file not shown.
Reference in New Issue
Block a user