Given the following data segment, write code in main which adds all the numbers in a. If the final sum is positive, it should be saved in RBX register, and if it is negative, then it should be saved in RCX register.
Hello! I am a bit confused on how to go about adding these, as they are all in the same segment, a.
segment .data
a dd 12, 15, 17
segment .text
global main
main: