Bus Transfers:
In computer architecture, bus systems are generally classified into two types: Parallel Bus and Serial Bus.
A Parallel Bus consists of multiple data lines, each capable of transferring individual bits simultaneously. This parallel transmission results in higher data transfer speeds, making it efficient for large data volumes.
A Serial Bus uses fewer lines for data transfer, with bits sent sequentially along a single or few lines. Although this method is slower compared to a parallel bus.
Serial Bus Transfer:
Parallel Bus Transfers:
Memory Transfers:
Memory transfers refer to the process of moving data between a specific memory location and a register. These transfers can occur in either direction: from memory to a register or from a register to memory.
A transfer from Memory to Register is known as a READ operation, while a transfer from Register to Memory is called a WRITE operation.
Memory Read Operation:
A memory read operation first searches for a location in the memory and then transfers the value located at that location to a register
Memory Write Operation: A memory write operation simply extracts data from a register and transfers it to a memory location.
0 Comments