I need to create an array of 20 values (bytes) and compute the average. I'm new in this. This is my code for the addition phase:
.MODEL SMALL
.STACK 100h
.DATA
arreglo db 3, 8, 5, 3, 9, 2, 1, 4, 5, 11, 2, 1, 12, 10, 7, 17, 18, 6, 14, 13
arrsuma db ?
promedio db ?
.CODE
main proc
mov...