769 views

1 Answer

0 votes
0 votes

Table 4.1. Register Transfer

Symbol Description Example
Letters Register name MAR, R2, PC
Parentheses Part of a register PC(0-7), R2(L)
Arrow Transfer R2 ← R1, PC ← PC + 1
Comma SIMULTANEOUS microoperations R2 ← R1, PC ← PC + 1
 

It answers not all of your ques but some portion of it. Yet I hope it serves your need.For further reading, Morris Mano should be referred.  

Related questions

3 votes
3 votes
2 answers
2
iarnav asked Aug 29, 2017
2,302 views
input {0,1} Set of all strings that begin and end with either 0 or 1. What does this statement/line means and what would be the R.E for this?
1 votes
1 votes
1 answer
3
im.raj asked May 6, 2016
590 views
char *(*(* a[N])())();Can somebody explain this for me? How to read this?
2 votes
2 votes
3 answers
4
Laahithyaa VS asked Sep 9, 2023
998 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...