I'm trying to add and multiply. EX: [N1+N2*N3]
First multiply N2 and N3.
Second add N1 and the result of N2*N3.
BTW this is on Assembly Language MASM.
Here is some of the code for perform calculation section.
mov ax,N2
mul bl
mov ax,N3
mov X1,ax
add...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.