Skip to content

MMDPROJECT/assembly_fans

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Assembly 100.0%