Questions tagged [wombat-1]

Wombat 1 is an educational ISA shipped with the CPU Sim software development environment.

2 questions
1
vote
0 answers

Size of main memory in Wobmat?

What is size of main memory in Wombat. And what is size of main memory in MARIE. Is it 4K×16 for both. But isn't word size In Marie is 8 bit . and 16 in wombat?
0
votes
1 answer

Finding even or odd in assembly language

How can I check if a number is even or odd in Wombat CPU simulator? In C++ we can say if(num%2==0) even else false, but there is no modulus % instruction in Wombat, so how can I find even or odd?