https://github.com/seyed0123/assembly_fans
This repo belongs to assembly lovers
https://github.com/seyed0123/assembly_fans
assembly
Last synced: about 1 year ago
JSON representation
This repo belongs to assembly lovers
- Host: GitHub
- URL: https://github.com/seyed0123/assembly_fans
- Owner: seyed0123
- Created: 2024-06-16T11:22:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T09:35:36.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T05:43:37.987Z (over 1 year ago)
- Topics: assembly
- Language: Assembly
- Homepage:
- Size: 327 KB
- Stars: 3
- Watchers: 1
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:











