Computer Microprocessor and Architecture

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING title ALP to read a string, convert it into upper case and display the converted string dosseg .model small .stack 100H .code main proc far mov ax, @data ; initialize ds register mov …

Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING Read complete article »

ALP to SUM THE NUMBERS FROM 1-100

title SUM THE NUMBERS FROM 1-100 dosseg .model small .stack 100H .code main proc mov ax, 0 mov cx, 10h ; loop count=10 BACK: add ax, cx ; add two numbers loop BACK ; repeat until cx=0 mov ax, 4c00h ; return to DOS int 21h main endp end main

Find the largest element in a block of data. The length of block is 0A H. Store the maximum value in memory location result. Use an Assembly Language Program for Intel 8086.

Find the largest element in a block of data. The length of block is 0A H. Store the maximum value in memory location result. Use an Assembly Language Program for Intel 8086.   title largest element in a block of data dosseg .model small .stack 100H .code main proc mov ax, @data ; initialize ds …

Find the largest element in a block of data. The length of block is 0A H. Store the maximum value in memory location result. Use an Assembly Language Program for Intel 8086. Read complete article »

Computer Architecture and Design EG633CT

Objectives To provide basic architectural and designing concepts of computers. This course gives comprehensive view of basic computer architecture. 1. Central Processing Unit: ( 8 hours) 1.1 Hardwired and Microprogramed 1.2 Arithmetic Logic Unit 1.3 Instruction 1.4 Addressing Modes 1.5 Data transfer and manipulation program control ( status, branch, subroutine call, interrupt ) 2. Arithmetic …

Computer Architecture and Design EG633CT Read complete article »

Scroll to Top