I want to write a simple M.A.R.I.E. program to evaluate the expression A x B + C x D
.
Now, there's not alot of info on Marie assembly language.
I am not sure if there is a multiply? If not, would I have to loop or something to get it to multiply?
I know for certain operators like <
, >
you would subtract.
This is what I have so far:
100 load A
101 load B
102 add C // add to B? b+c?
103 mult A
I'm just stuck.