(no commit message)
authorlkcl <lkcl@web>
Fri, 8 Oct 2021 23:50:20 +0000 (00:50 +0100)
committerIkiWiki <ikiwiki.info>
Fri, 8 Oct 2021 23:50:20 +0000 (00:50 +0100)
3d_gpu/architecture/dynamic_simd.mdwn

index ece59c9db4c8d2bf120c7c39e82094f08fedf552..a56a08b1a3f01d1d1e2c6f5f1c9790f8b893f1ab 100644 (file)
@@ -26,8 +26,10 @@ overrides.
 * To extend nmigen "Type 1 (ast.*)" low-level language constructs
   in the Value class
   with `Value.__Cat__`, `Value.__Switch__`, `Value.__Repl__` etc.
-* To rename existing old `ast.Cat` to new `ast._InternalCat`,
-  `ast.Repl` to `ast._InternalRepl` etc.
+* To rename existing old
+  - `ast.Cat` to new `ast._InternalCat`,
+  - `ast.Repl` to `ast._InternalRepl`
+  - etc.
 * In an identical conceptual fashion, just
   as python `operator.add(x,y)` redirects to `x.__add__(y)`,
   to add a new `ast.Cat(x..)` which redirects to`x.__Cat__(...)` etc.