.model small .stack 100h .code JMP INIT ;to go to initialization resi: push ax push bx push cx
Read More
Showing posts with label MICROPROCESSOR. Show all posts
Showing posts with label MICROPROCESSOR. Show all posts
12-Write a TSR SCREEN PROGRAM
.model small .stack 500h .code resi_timer: ;resident code for timer interrupt cmp cs:flag,1 ;cheacking if sc...
Read More
10-Write an ALP in 8086 to Perform OVERLAPPED Block transfer
.model small disp macro a mov ah,09h lea dx,a int 21h endm
Read More
09-Write an ALP in 8086 to perform NON-OVERLAPPED Block Transfer (Using CLD)
.model small disp macro msg mov ah,09h lea dx,msg int 21h endm
Read More
08-Write an ALP in 8086 to Perform NON-OVERLAPPED Block Transfer
.model small disp macro msg mov ah,09h lea dx,msg int 21h endm
Read More
07-Write a 8086 ALP to Perform Multiplication Two Numbers
.model small disp macro a mov ah,09h lea dx,a int 21h endm
Read More
06-Write 8087 ALP to obtain MEAN ,VARIANCE & STANDARD DEVIATION for given set of data elements defined in data segment.
Write 8087 ALP to obtain: 1)MEAN 2)VARIANCE 3)STANDARD DEVIATION for given set of data elements d...
Read More
05-CONVERSION FROM HEX TO BCD AND BCD TO HEX
.model small disp macro a mov ah,09h lea dx,a int 21h endm
Read More
04-Overlapped Block Transfer by string instructions
.model small .data src db 15h,16h,17h,18h,19h count db 05h
Read More
Subscribe to:
Posts (Atom)