This repository is for those very interested in assembly and who want to show their devotion and close relationship with it by writing a few sentences about it.
To participate in this action, it is enough to fork the repo, place your desired text in the specified part of the code (line 5), put the asm file in the src
directory, and the photo of the output of your program in the shots
directory then put it in the readme file.
.MODEL SMALL
.STACK 100H
.DATA
; The string to be printed
STRING DB 'Put your text here', '$'
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX
; load address of the string
LEA DX,STRING
; output the string
; loaded in dx
MOV AH,09H
INT 21H
; interrupt to exit
MOV AH,4CH
INT 21H
MAIN ENDP
END MAIN