summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/src/wiki-deprecated/chisel3-vs-chisel2.md2
-rw-r--r--docs/src/wiki-deprecated/reset.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/wiki-deprecated/chisel3-vs-chisel2.md b/docs/src/wiki-deprecated/chisel3-vs-chisel2.md
index c6fa83ed..bfd20348 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)) 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](../explanations/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.
diff --git a/docs/src/wiki-deprecated/reset.md b/docs/src/wiki-deprecated/reset.md
index 1b35dc00..3aafeccd 100644
--- a/docs/src/wiki-deprecated/reset.md
+++ b/docs/src/wiki-deprecated/reset.md
@@ -117,7 +117,7 @@ You can also cast to force the concrete type of reset.
* `.asAsyncReset` will reinterpret a `Reset` as `AsyncReset`.
You can then use `withReset` to use a cast reset as the implicit reset.
-See ["Multiple Clock Domains"](multi-clock) for more information about `withReset`.
+See ["Multiple Clock Domains"](../explanations/multi-clock) for more information about `withReset`.
The following will make `myReg` as well as both `resetAgnosticReg`s synchronously reset: