https://github.com/aromalanil/microprocessor-lab-ktu
This repository contains a collection of assembly programs written as part of Microprocessor Lab KTU
https://github.com/aromalanil/microprocessor-lab-ktu
8086 assembly ktu masm
Last synced: 13 days ago
JSON representation
This repository contains a collection of assembly programs written as part of Microprocessor Lab KTU
- Host: GitHub
- URL: https://github.com/aromalanil/microprocessor-lab-ktu
- Owner: aromalanil
- Created: 2020-02-11T09:37:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-08T17:39:10.000Z (over 3 years ago)
- Last Synced: 2025-03-31T18:51:48.713Z (about 2 months ago)
- Topics: 8086, assembly, ktu, masm
- Language: Assembly
- Homepage:
- Size: 33.2 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Microprocessor Lab | KTU
This repository contains a collection of assembly programs written as part of Microprocessor Lab KTU
## 🚧 Requirements
* [DOSBox](https://www.dosbox.com/download.php?main=1)
* [MASM](http://www.mediafire.com/download/x13v7gqqmw1pom7/8086_Assembler(TechzClub_joyjophin).zip)
## 🛠 Setup DOSBox and MASM
1. Download and Install [DOSBox](https://www.dosbox.com/download.php?main=1)
2. Download and extract [MASM](http://www.mediafire.com/download/x13v7gqqmw1pom7/8086_Assembler(TechzClub_joyjophin).zip)
3. Open DOSBox and Run following commands
```bash
mount c
c:
```### Example
```bash
mount c c:/users/aromal/downloads/masm
c:
```## 💻 Run
To run any of these programs in your computer.
1. Download and Copy the program you want to run to the MASM folder
2. Open DOSBox and Run following commands
```bash
mount c
c:masm
link```
### Example
```bash
mount c c:/users/aromal/downloads/masm
c:masm pattern.asm
link pattern.obj
pattern.exe
```## ✍ Author
[Aromal Anil](https://aromalanil.in)