eli5: How does a cpu READ or know that it has to READ 0s and 1s from a storage device ( low level transistor scale)?

211 views

eli5: How does a cpu READ or know that it has to READ 0s and 1s from a storage device ( low level transistor scale)?

In: 0

4 Answers

Anonymous 0 Comments

I’m not sure what you mean by storage device, but when the cpu starts up there is logic in it that says it should set its instruction pointer to a particular address, and then there is logic that essentially puts the processor in a loop where it requests the data at the instruction pointer’s address from memory, executes the instruction, moves the instruction pointer forward (either by the size of the current instruction, or to some other address if the instruction was a call or jump, …) and then it repeats the loop.

You are viewing 1 out of 4 answers, click here to view all answers.