Laiba Razi Khanlaiba.hashnode.dev·Jun 14, 2023Program to Calculate the Sum of Ten Numbers in Assembly LanguageProgram to Calculate the Sum of Ten Numbers in Assembly Language Code [org 0x100] mov ax,0 mov bx,0 l1: add ax,[num1+bx] ;Addition will be stored in ax and in num1 array wise iteration will take place add bx,2 cmp bx,20 jne l1 mov [total],ax mov a...1.5K readsdosbox
Muhammad Zeeshanzexhan.hashnode.dev·Aug 25, 2022Set up Assembly language Environment in Ubuntu 20.04Install git if you don't have sudo apt install git or confirmed by git -version Then copy this command and paste it in terminal. cd ~ ; mkdir Test; cd Test; git clone https://github.com/zexhan17/assembly-lang-course.git wait until clone done. cd asse...80 readsAssembly