CSE 322 Summer 2022 Projects Approval Status
If the table gets cut, use landscape view to show full table or scroll horizontally.
If the table gets cut, use landscape view to show full table or scroll horizontally.
Simulation lab 2. Lab report has to be submitted. The list below shows the list of tasks and information to be submitted in the lab report. Task#1 Simulation of a… Read more »
Check the submission status for your lab tasks.
Simulation lab starts. Lab report has to be submitted. The list below shows the list of tasks and information to be submitted in the lab report. Task #1 Simulation of… Read more »
Check approval status for your project.
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 »
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 »