Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seyed0123/assembly_fans

This repo belongs to assembly lovers
https://github.com/seyed0123/assembly_fans

assembly

Last synced: 3 months ago
JSON representation

This repo belongs to assembly lovers

Awesome Lists containing this project

README

        

# 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 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](README.md) file.
```assembly
.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:
![](shots/1.png)

![](shots/2.png)

![](shots/3.png)

![](shots/4.png)

![](shots/5.png)

![](shots/6.png)

![](shots/7.bmp)

![](shots/8.png)

![](shots/9.png)

![](shots/10.jpeg)

![](shots/11.JPG)

![](shots/12.png)