Question: Translate the following code segment into MARIE's assembly language: Submit: cin >> x; cin >> Y; cout < < x; cout < < Y;

Translate the following code segment into MARIE's assembly language: Submit: cin >> x; cin >> Y; cout < < x; cout < < Y; Z = X + Y; cout < < Z; x = 0; Y = 0; cout < < x; cout < < Y; Copy of source (.mas) file Screen capture showing program loaded in MARIE simulator
Step by Step Solution
There are 3 Steps involved in it
ORG 100 INP STA X INP STA Y LDA X OUT LDA Y OUT LDA X ... View full answer
Get step-by-step solutions from verified subject matter experts
