New to Assembly language, reading a book here. I'm trying to do an simple basic exercise. Using appropriate registers, I have to add 100, 200, 300, 400, 500. Don't know where to start with this program. This is the outline of the program, now I need to add the registers. This is what I have, from what I understand from the book. Don't know how to keep adding.
(AddSub.asm)
INCLUDE Irvine32.inc
.code
main PROC
mov eax, 100
add eax, 200
exit
main ENDP
END main