summaryrefslogtreecommitdiff
path: root/docs/src/wiki-deprecated/chisel3-vs-chisel2.md
diff options
context:
space:
mode:
authorAdam Izraelevitz2020-10-26 16:48:44 -0700
committerGitHub2020-10-26 23:48:44 +0000
commit58fa3c1118d9e892895970d48e2ba8a3c182bb81 (patch)
treea672be8750c8c8dd2bb1645f88b4ce1bbbb37993 /docs/src/wiki-deprecated/chisel3-vs-chisel2.md
parent1b6bd89dfafc774af1c926a982418294091f6346 (diff)
Fix crosslinks in mdoc. Can't use md suffix (#1640)
* Fix crosslinks in mdoc. Can't use md suffix * Removed all .md crossrefs Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'docs/src/wiki-deprecated/chisel3-vs-chisel2.md')
-rw-r--r--docs/src/wiki-deprecated/chisel3-vs-chisel2.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/wiki-deprecated/chisel3-vs-chisel2.md b/docs/src/wiki-deprecated/chisel3-vs-chisel2.md
index 6f14a2eb..c6fa83ed 100644
--- a/docs/src/wiki-deprecated/chisel3-vs-chisel2.md
+++ b/docs/src/wiki-deprecated/chisel3-vs-chisel2.md
@@ -89,7 +89,7 @@ for instructions on preparing your Chisel2 designs for Chisel3.
## Unsupported constructs
* `Mem(..., orderedWrites)` is no longer supported,
* masked writes are only supported for `Mem[Vec[_]]`,
-* Chisel3 Vecs must all have the same type, unlike with Chisel2. Use `MixedVec` (see [Bundles and Vecs](bundles-and-vecs.md)) for Vecs where the elements are of different types.
+* Chisel3 Vecs must all have the same type, unlike with Chisel2. Use `MixedVec` (see [Bundles and Vecs](bundles-and-vecs)) for Vecs where the elements are of different types.
* connections between `UInt` and `SInt` are illegal.
* the `Node` class and object no longer exist (the class should have been private in Chisel2)
* `printf()` is defined in the Chisel object and produces simulation printf()'s.