Showing posts with label Micro Program. Show all posts
Showing posts with label Micro Program. Show all posts

58 Program to convert BCD Number to Hexadecimal Number in 8086 Microprocessor

Code: ; Program to convert BCD Number to Hexadecimal Number .MODEL SMALL .STACK 100H .DATA BCD DB '1234' HEX_NUM DW 0 ...
Read More

60 Program to find smallest number in the array using Macro in 8086 Microprocessor

Code: ; Program to find smallest number in the array using Macro .MODEL SMALL .STACK 100H SMALL_W MACRO ARRAY , LENGTH , SMALLEST ...
Read More

59 Program to perform operation Z = (A+B) * (C+D) using Procedure in 8086 Microprocessor

Code: ; Program to perform operation Z = (A+B) * (C+D) ; using Procedure .MODEL SMALL .STACK 100H .DATA    A DB 1    B DB 2    C...
Read More

57 Program to convert Lower Case String to Upper Case String in 8086 Microprocessor

Convert Letter : https://codingatharva.blogspot.com/2019/01/11-program-to-convert-capital-letter-in.html Code: ; Program to convert Lo...
Read More

56 Program to concatenate two string in 8086 Microprocessor

Code: ; Program to concat two string .MODEL SMALL .STACK 100H .DATA STR1 DB 'CODING $' STR2 DB 'ATHARVA$' L1 DB...
Read More

55 Program to reverse the given String in 8086 Microprocessor

Code: ; Program to reverse the given String .MODEL SMALL .STACK 100H .DATA OSTR DB 'CODING$' DSTR DB ? LEN  DB 0 .COD...
Read More