/ Published in: Assembler
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
;
mov di, 0 ;reset counter
print_array1:
mov ax, [int_arr+di] ;print dec from array at position DI
call putdec$
inc di
cmp di, 100
jb print_array1
call newline
call newline
Comments
 Subscribe to comments
                    Subscribe to comments
                
                