CSE 322 Spring 2021 Lab 8
Task #1 Basic XLAT usage //Code .MODEL SMALL .STACK 100h .DATA array1 db 10,11,12,13,14,15,16,17,18,19,20 .CODE MAIN PROC mov ax, @data mov ds, ax lea bx, array1 mov al, 5 xlat… Read more »
Task #1 Basic XLAT usage //Code .MODEL SMALL .STACK 100h .DATA array1 db 10,11,12,13,14,15,16,17,18,19,20 .CODE MAIN PROC mov ax, @data mov ds, ax lea bx, array1 mov al, 5 xlat… Read more »
Task #1 (Program listing 9.2, 9.3, 9.4) Decimal input output procedure //Code .MODEL SMALL .STACK 100h .DATA msg db ‘The Value plus 10 is $’ .CODE main proc mov ax,… Read more »
Task #1 Introduction to Stack //Code .MODEL SMALL .STACK 100h .DATA .CODE MAIN PROC mov ax, @data mov ds, ax mov ax, 1234h mov bx, 5678h push ax inc ax… Read more »
Check approval status for your project.
Task #1 Introduction to logical instructions //Code mov ax, 01010101b mov bx, 10101010b mov cx, ax and cx, bx ;Logical AND mov cx, ax or cx, bx ;Logical OR mov… Read more »
Task #1 (Example 6.6) [AND condition] Read a character, and if it’s an uppercase letter, display it. //Code .MODEL small .STACK 100H .DATA .CODE MAIN Proc mov ax, @data mov… Read more »
Task #1 A basic while loop //Code .MODEL small .STACK 100H .DATA a db ‘**********’,0dh,0ah,’$’ .CODE MAIN Proc mov ax, @data mov ds, ax label1: mov ah, 1 int 21h… Read more »
Task #1 Write a program to (a) prompt the user, (b) read first, middle, and last initials of a person’s name, and (c) display them down the left margin. Sample… Read more »
Dear, 1st Semester student. Welcome to the Department of Computer Science and Engineering at North East University Bangladesh. As we know due to the current pandemic situation we are starting… Read more »
Task #1 General structure of Assembly code and printing characters. //Solution .MODEL small .STACK 100H .DATA .CODE MAIN PROC MOV AH, 2 MOV DL, 41h INT 21h ;For a New… Read more »