Top "Marie" questions

MARIE (Machine Architecture that is Really Intuitive and Easy) allows you to learn the essential concepts of computer organization and architecture, including assembly language, without getting caught up in the unnecessary and confusing details that exist in real architectures.

How does `Skipcond` work in the MARIE assembly language?

I am trying to understand the MARIE assembly language. I don't quite understand skipcond for doing things like <, or &…

assembly pseudocode marie
MARIE simulator: multiplication of two numbers using addition

multiplication of two numbers 6 and 3 by, repeatedly addition of 3 six times,using a loop that will add 3 six times and …

marie
MARIE Assembly If-Then

Pseudocode: if x > 1 then y = x + x; x = 0; endif; y = y + 1; I am tracing the MARIE code below based …

if-statement assembly marie
Skipcond in MARIE Assembly Language

I have the following code: ORG 100 LOOP, Load X Add Z Store X Load Y Skipcond 400 Jump Q Subt Z …

assembly marie
testing in a while loop (MARIE)

I'm trying to write a while loop, while N > 5. While I understand just making a loop point and jumping …

assembly marie
M.A.R.I.E divide one number by another

I'm learning assembly using the MARIE program but I can't figure out hot to do this question from the book: …

assembly marie
I cant figure out why this MARIE Sim code wont work properly

So, I'm running into an issue when working with the MARIE simulator. Here is the prompt: define a decimal variable …

assembly marie