;************************************************************************ ;* * ;* LAB3-2.ASM - Assembler Laboratory ZMiTAC * ;* * ;* Sample .COM program * ;* * ;************************************************************************ .model tiny .code org 100h beginning: mov ah, 09h ; write on the screen mov dx, offset sample_text ; offset of sample_text (segment in DS) int 21h mov ax, 4C00h ; end of the program int 21h sample_text DB "Sample COM program...", 0Dh, 0Ah, '$' end beginning