BMSTU IU7, semester 4.
x86 real-mode assembly for MS-DOS, assembled with MASM and run under DOSBox.
| Path | Topic |
|---|---|
lab1 |
.COM program using simplified segment directives |
lab2 |
.EXE program with explicit stack, data and code segments |
programm.asm |
Working copy of the lab 2 source |
bin |
Assembled binaries |
tips.txt |
MASM and LINK invocation notes |
Lab 1 uses .MODEL TINY and DOS interrupt 21h for output; lab 2 declares
StkSeg, DataS and Code by hand and drives output through a loop.
MASM programm.asm
LINK programm.obj
Run the result under DOSBox or any DOS-compatible environment.
x86 assembly, MASM, MS-DOS