Posts

Showing posts with the label Assembly Language

Program to design and implement Macro > Assembly Program

Image
Program to design and implement Macro  > Assembly Program System Programming and Compiler Construction Program 1: macro.c #include<stdio.h> #include<conio.h> #include<string.h> struct mnt { int sr; char mn[30]; int mdtc; int p; }ntab[10];

Program to design and implement Pass 1 of 2 Pass Assembler > C and Assembly Program

Image
Program to design and implement Pass 1 of 2 Pass Assembler > C and Assembly Program System programming and Compiler Construction .asm code: PG1              START 1000                     USING *, 15                      L                    1, FOUR                      A                    1, ='5'                      ST                  1, TEMP                      A                    1, ='4' FOUR         DC   ...

To multiply two 16-Bit Numbers > Mixed Language Program

To multiply two 16-Bit Numbers > Mixed Language Program Microprocessor Program: #include<stdio.h> #include<conio.h> void main() {

Program to check whether a number is Even or Odd using Procedure > Assembly Language

Program to check whether a number is Even or Odd using Procedure > Assembly Language Microprocessor ASSUME CS:CODE,DS:DATA

Program to check whether a number is Even or Odd using Macro > Assembly Language

Program to check whether a number is Even or Odd using Macro > Assembly Language Microprocessor ASSUME CS:CODE,DS:DATA

Program to check whether a number is Even or Odd > Assembly Language

Program to check whether a number is Even or Odd > Assembly Language Microprocessor ASSUME CS:CODE,DS:DATA

Program to print characters from A to Z > Assembly Language

Program to print characters from A to Z > Assembly Language Microprocessor ASSUME CS:CODE

To Display reverse of entered String > Assembly Program

To Display reverse of entered String > Assembly Program Microprocessor assume cs:code,ds:data

To find Sum and Average of Block of n-Bytes > Assembly Language

Microprocessor To find Sum and Average of Block of n-Bytes > Assembly Language ASSUME CS:CODE , DS:DATA DATA SEGMENT

To Find Average of two Bytes > Assembly Language

Microprocessor To Find Average of two Bytes > Assembly Language ASSUME DS:DATA, CS:CODE DATA SEGMENT