CSE 322 Fall 2018 Lab 1
Problem #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 mov dl, 0ah… Read more »
Problem #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 mov dl, 0ah… Read more »
The objective of this experiment is to implement circuit using op-ampto do mathematical operations like Addition Subtraction Multiplication Integration Differentiation Click here for the Lab sheet of this lab
Problem 1 (Chapter 10 question 9) Write a program that uses XLAT to (a) read a line of text, and (b)print It on the next line with all small letters… Read more »
The objective of this experiment is to implement circuit and sketch the output of Inverting amplifier, Non-inverting amplifier and Voltage follower. Click here for the Lab sheet of this lab
Problem 1 (section 10.7) Encoding and Decoding string using XLAT instruction //Code Title secret message .Model small .stack 100h .data ; ;ABCDEFGHIJKLMNOPQRSTUVWXYZ code_key db 65 dup(‘ ‘), ‘XQPOGHZBCADEIJUVFMNKLRSTWY’ db 37… Read more »
Problem 1 Write a procedure to find the factorial of a number present in cx. //Code fact proc mov ax, 1 top1: mul cx loop top1 ret fact endp Problem… Read more »
The objective of this experiment is • To obtain common emitter characteristics of NPN transistor. • To obtain common base characteristics of NPN transistor Click here for the Lab sheet… Read more »
Topics covered in this lab include Clipping circuit Clamping circuit Click here for the Lab sheet of this lab
Problem 1 An example procedure //Code .MODEL small .STACK 256 .data .code main proc mov ax, @data mov ds, ax mov ax, 3 mov bx, 4 call addd Exit: mov… Read more »
Problem#1 Binary input //Code XOR BX, BX MOV AH, 1 INT 21H WHILE: CMP AL, 0DH JE END_WHILE AND AL, 0FH ; SUB AL, 30 SHL BX,1 OR BL, AL… Read more »