Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in docs #1643

Merged
merged 1 commit into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/wiki-deprecated/chisel3-vs-chisel2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/wiki-deprecated/reset.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down