IBCm Flashcards

1
Q

Machine language

A

instructions represented as patterns of bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Fetch execute cycle

A

practically this…
ir = instruction register
pc = program counter

while(power is on) {
    IR := memory[PC]
    Increment PC by length of instruction
    execute instruction in IR
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

iBCM has a how big accumulator

A

16 bit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How many registers does ibcm have?

A

IR and PC

  • Instructor register stores bits which encode instructor
  • Program counter stores an address of an instruction
How well did you know this?
1
Not at all
2
3
4
5
Perfectly