- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is control of Register and Memory in Computer Architecture?
The control inputs to registers and memory are −
- Load (LD) − When it is enabled, the content from the source register or memory can be transferred to/from the bus.
- Increment (INR) − It can increment the register by 1.
- Clear (CLR) − It can clear the register.
The figure shows a scheme for the control of registers and memory.
As shown in the diagram, all the register transfer statements are checked originally which modifies the content of AR.
The instructions are as follows −
R′T0: | AR ← PC |
R′T2: | AR ← IR(0 − 11) |
D′7IT3 : | AR ← M[AR] |
RT0: | AR ← 0 |
D5T4: | AR ← AR + 1 |
The first three statements determine the transfer of data from a register or memory to AR. The content of the source register or memory is located on the bus and the content of the bus is transferred into AR by enabling its LD control input. The fourth statement clears AR to 0. The final statement increments AR by 1.
The control functions can be combined into three Boolean expressions as follows −
LD(AR): | R′T0 + R′T2 + D′7 IT3 |
CLR(AR): | RT0 |
INR(AR): | D5T4 |
where LD(AR) is the load input of AR, CLR(AR) is the clear input of AR, and INR(AR) is the increment input of AR. The control gate logic associated with AR is displayed in the figure.
Similarly, we can change the control gates for the other registers and the logic required to control the read and write inputs of memory. The logic gates associated with the read input of memory are changed by checking the table to find the statements that determine a read operation. The read operation is recognized from the symbol←M [AR].
Read = R′T1 + D′7 IT3 + (D0 + D1 + D2 + D6 )T4
The output of the logic gates that execute the Boolean expression should be linked to the read input of memory.
- Related Articles
- What is Memory Transfer in Computer Architecture?
- What is Memory Stack in Computer Architecture?
- What is Cache Memory in Computer Architecture?
- What is design space of register renaming in computer architecture?
- What is shared-memory model in computer architecture?
- What is Distributed-Memory Multicomputer in Computer Architecture?
- What is Design of Control Unit in Computer Architecture?
- What is the configuration of memory subsystem in computer architecture?
- What are Vector-Access Memory Schemes in Computer Architecture?
- Discuss the Memory Hierarchy in Computer Architecture?
- What are different types of RAM (Random Access Memory) in computer architecture?
- What is Control Memory?
- What is the CPU control register?
- How to Control Common Bus in Computer Architecture?
- What are the basic components of the memory management unit in computer architecture?
