sequential (16) Architecture of in-out
https://kamchihau.blogspot.com/2022/08/httpskamchihau_42.html
.
Ref: https://kamchihau.blogspot.com/2022/08/httpskamchihau_4.html
.
.
.
1) https://wodewangzhishime.blogspot.com/2022/03/httpswodewangzhishime_15.html?m=1
2) https://kamchihau.blogspot.com/2022/08/heat-expand-cold-shrink.html?m=1
.
John : The 2 articles above are the architecture of input. This article is the architecture of output.
Me: Ok.
John : See the 1st picture. It's case 1. If you put a delayed circuit there, during 1 down cycle of the Clock line of RJ45, only 1 bit can be output. It's b4.
.
Me: Yes,
.
John : If there's no delayed circuit, during 1 down cycle of the clock line of RJ45, all 4 bits right shift together. All 4 bits output to the output line through "B1".
Me: You mean 0.1.0.1 all put on the output line.
John : Yes,. Now, you see the 2nd picture. It's case 2. B1 output 0 individually to the output line. B2 output 1 individually to the output line. B3 output 0 individually to the output line. B4 output 1 individually to the output line.
.
Me: Ok.
.
John : Of Case 1 and 2, which case can result in faster operation ?
.
Me: They are the same.
.
John : As a result, the modern architecture tends to use 1 "line" only. We call it as an output line. In code, we have
.
If (delayed circuit = true)
{
serial output
}
Else
{
parallel output.
}

