Skip to main content

Posts

Showing posts with the label CS 401

CS401 Assignment 1 solution spring 2021

   CS401-Assignment 1 solution spring 2021   [org 0x0100] jmp start start:              mov bx,0              mov cx ,9              mov ax,0              mov si,0 12:              cmp[num1+bx],si              je next              add ax[num1+bx] next:              add bx,2              sub cx,1              cmp cx,0              jnz 12             mov[num2] ,ax             mov ax, 0x4c00             num1:dw 2,2,0,3,6,9,3,3,5             num2: dw 0   Solution File  D...