;PROGRAM TO PRINT TWO STRING ON TWO DIFFERNT LINE .MODEL SMALL .STACK 100 .DATA MSG1 DB 'HELLO$' MSG2 DB 'WORLD$'...
Read More
11 Program to convert capital letter in lower letter in 8086 Microprocessor
; PROGRAM TO CONVERT CAPITAL LETTER INTO LOWER LETTER .MODEL SMALL .STACK 100 .CODE MOV AH,1 INT 21H ADD AL,32 MOV DL,...
Read More
10 Program to input two number and add them in 8086 Microprocessor
.MODEL SMALL .STACK 100 .CODE MOV AH,1 ; SERVICE ROUTINE 1 INPUT INT 21H ; INTERUPT 21H F0R GOING ON INPUT/OUTPUT SCREEN MO...
Read More
9 Program to subtract two number using Register Addressing in 8086 Microprocessor
;PROGRAM ON REGISTER SUBSTRACTION .MODEL SMALL .STACK 100 .CODE MOV AL,3 MOV DL,4 SUB DL,3 ADD DL,48 MOV AH,2 ...
Read More
8 Program to subtract two number using Immediate Addressing in 8086 Microprocessor
.MODEL SMALL .STACK 100 .CODE MOV DL,10 SUB DL,2 ADD DL,48 MOV AH,2 INT 21H MOV AH,4CH INT 21...
Read More
7 Program to add two number using Register Addressing in 8086 Microprocessor
; ADD TWO NUMBER USING REGISTER .MODEL SMALL .STACK 100 .CODE MOV CL,3 MOV AL,4 ; MOV CL,4 MOV BL,4 ADD CL,AL ; ADD DL,CL AD...
Read More
6 Program to add two number using Immediate Addressing in 8086 Microprocessor
; PROGRAM TO ADD NUMBER USING IMMEDIATE .MODEL SMALL .STACK 100 .CODE MOV AL,40 ADD AL,50 MOV DL,AL MOV AH,02 INT 21H MO...
Read More
5 Program to add two number and display on Screen in 8086 Microprocessor
.MODEL SMALL .STACK 100 .CODE MOV AL,70H MOV BL,80H ADD AL,BL MOV DL,AL MOV AH,2 INT 21H MOV AH,4CH INT 21H ...
Read More
4 Program to print a single character on console take input from user in 8086 Microprocessor
DOSSEG .MODEL SMALL .STACK 100 .DATA A DB 'A' .CODE MOV AH ,1 INT 21H MOV DL,AL MOV AH,2 INT 21H MOV AH,...
Read More
3 Program to print a single character on console in 8086 Microprocessor
.MODEL SMALL .STACK 100 .CODE MOV DL,'A' MOV AH,2 ; Service Routine Output/Print a single character INT 21H MOV AH,4C...
Read More
2 Program to add two number in 8086 Microprocessor
.MODEL SMALL .STACK 100 .DATA NUM1 DB 01H NUM2 DB 01H NUM3 DB ? .CODE MOV AX,@DATA MOV DS,AX MOV AL,NUM1 ADD AL,...
Read More
1 Program to Print a Message in 8086 Microprocessor
Mount cd c:\ CD C:\TASM .MODEL SMALL .STACK 100 .DATA MSG1 DB "MY FIRST PROGRAM IN 8086$" .CODE MOV AX,@DATA M...
Read More
37 Program to check input password is correct or not in Java
Code: import java.io.*; class Password { public static void main( String args[] )throws IOException { BufferedReader buff = ...
Read More
36 Program on jagged array in Java
Code: import java.util.Scanner; class Aray { public static void main( String args[] ) { Scanner scan = new Scanner( System.in )...
Read More
Subscribe to:
Posts (Atom)