section .data
text: db '𝗛𝗘𝗟𝗟𝗢 𝗕𝗟𝗨𝗘𝗦𝗞𝗬!',15
textSize: equ $-text
section .text
global _Main
_Main:
mov eax,4
mov ebx,1
mov ecx,text
mov edx,textSize
int 80h
mov eax,1
mov ebx,0
int 80h;
text: db '𝗛𝗘𝗟𝗟𝗢 𝗕𝗟𝗨𝗘𝗦𝗞𝗬!',15
textSize: equ $-text
section .text
global _Main
_Main:
mov eax,4
mov ebx,1
mov ecx,text
mov edx,textSize
int 80h
mov eax,1
mov ebx,0
int 80h;
Comments