add walk-through videos for LD/ST CompUnit
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 30 Apr 2020 17:30:23 +0000 (18:30 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 30 Apr 2020 17:30:23 +0000 (18:30 +0100)
3d_gpu/architecture/6600scoreboard.mdwn

index 3371c4e954f0a7f5072fe927ba0d8ac90ae19382..0b75b2985406209532951b8322d5cd5813ec3560 100644 (file)
@@ -139,13 +139,19 @@ Discussions:
 * <http://lists.libre-riscv.org/pipermail/libre-riscv-dev/2020-April/006167.html>
 * <https://groups.google.com/forum/#!topic/comp.arch/qeMsE7UxvlI>
 
+Walk-through Videos:
+
+* <https://www.youtube.com/watch?v=idDn1norNl0>
+* <https://www.youtube.com/watch?v=ipOe0cLOJWc>
+
 The Load/Store Computation Unit is a little more complex, involving
 three functions: LOAD, STORE, and LOAD-UPDATE.  The SR Latches create
 a forward-progressing Finite State Machine, with three possible paths:
 
 * LD Mode will activate Issue, GoRead1, GoAddr then finally GoWrite1
-* UPDATE Mode will activate Issue, GoRead1, GoAddr then GoWrite1 *and* 2.
+* LD-UPDATE Mode will *additionally* activate GoWrite2.
 * ST Mode will activate Issue, GoRead1, GoRead2, GoAddr then GoStore.
+  ST-UPDATE Mode will *additionally* activate GoWrite2.
 
 These signals will be allowed to activate when the correct "Req" lines
 are active.  Minor complications are involved (extra latches) that respond