sequential (65) fields
https://kamchihau.blogspot.com/2022/10/if-it-is-low-tech-if-somebody-is.html
.
Ref: https://wodewangzhishime.blogspot.com/2022/06/satellite-for-loop.html
.
.
.
John: Each data-register has its own corresponding Cache.
Me: Ok.
John : The data-register and its own cache are synchronous.
Me: Ok.
John: I give you guys an example of how cache work. There're 5 data-fields inside the cache of (Process). And, there're 5 data-fields inside the data-register of (Process) too. They are,
===
Interrupt status [ system clock line]
Read []
Write []
Subject [ Process ]
Register's value []
______
If (R1 = R2 )
{
MOV Process, 0101
}
.
John : See the 3rd picture above. There's a series of Xor gate. The Xor gate is used to compare.
.
Me: Compare what?
.
John: Compare if the value of R1 and R2 are alike or not. If the value R1 is equal to the value of R2, it will become
.
Interrupt_status [System clock line]
Read [1]
Write [1]
Object [Process]
Register's value [0101]
.
John: In another words, if the value R1 is equal to the value of R2, we run a code like this, MOV Process, 0101.


