48 Program to transfer block using string Instruction in 8086 MIcroprocessor

Code: ; PROGRAM TO TRANSFER BLOCK USING STRING INSTRUCTION .MODEL SMALL .STACK 100H .DATA    ARR1 DW 1111H , 2222H , 3333H , 4444H ,...
Read More

47 Program to transfer block without using string instruction in 8086 Microprocessor

Code: ; PROGRAM TO TRANSFER BLOCK WITHOUT USING STRING INSTRUCTION .MODEL SMALL .STACK 100H .DATA    B1 DW 2110H , 3112H , 4113H , ...
Read More

46 Program to find count of positive number from array in 8086 Microprocessor

Code: ; Program to find count of positive number from array .MODEL SMALL .STACK 100H .DATA    ARR   DW 10H , -12H , 1H , -5H , -4H ...
Read More