PyAlaie / assembly_fans

This repo belongs to assembly lovers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Assembly fans

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.

collaboration:

To participate in this action, it is enough to place the desired text in this part of the code and the asm file in the src directory, put the photo of the output of the 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

Shots:




About

This repo belongs to assembly lovers


Languages

Language:Assembly 100.0%