aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Wang2018-12-25 12:53:40 -0500
committeredwardcwang2018-12-25 17:39:56 -0800
commit4253791132c5c550e1bc4a8070cb54e558f17809 (patch)
treebc5fd1514752d4f6ead9aa761050ff0a910c6eee
parent370d5b499f9c02c50fbd62f3291a53fbe8aea9b3 (diff)
Update documentation links
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index c724265a..2a15e1ca 100644
--- a/README.md
+++ b/README.md
@@ -11,20 +11,20 @@
A Firrtl compiler is constructed by chaining together these transformations, then writing the final circuit to a file.
- For a detailed description of Firrtl's intermediate representation, see the document "Specification of the Firrtl Language" located in [spec/spec.pdf](https://github.com/ucb-bar/firrtl/blob/master/spec/spec.pdf).
+ For a detailed description of Firrtl's intermediate representation, see the document "Specification of the Firrtl Language" located in [spec/spec.pdf](https://github.com/freechipsproject/firrtl/blob/master/spec/spec.pdf).
#### Wiki Pages and Tutorials
Useful information is on our wiki, located here:
-* https://github.com/ucb-bar/firrtl/wiki
+* https://github.com/freechipsproject/firrtl/wiki
Some important pages to read, before writing your own transform:
-* [Submitting Pull Requests](https://github.com/ucb-bar/firrtl/wiki/submitting-a-pull-request)
-* [Understanding Firrtl's IR](https://github.com/ucb-bar/firrtl/wiki/Understanding-Firrtl-Intermediate-Representation)
-* [Traversing a Circuit](https://github.com/ucb-bar/firrtl/wiki/traversing-a-circuit)
-* [Common Pass Idioms](https://github.com/ucb-bar/firrtl/wiki/Common-Pass-Idioms)
+* [Submitting Pull Requests](https://github.com/freechipsproject/firrtl/wiki/Submitting-a-Pull-Request)
+* [Understanding Firrtl's IR](https://github.com/freechipsproject/firrtl/wiki/Understanding-Firrtl-Intermediate-Representation)
+* [Traversing a Circuit](https://github.com/freechipsproject/firrtl/wiki/traversing-a-circuit)
+* [Common Pass Idioms](https://github.com/freechipsproject/firrtl/wiki/Common-Pass-Idioms)
-To write a Firrtl transform, please start with the tutorial here: [src/main/scala/tutorial](https://github.com/ucb-bar/firrtl/blob/master/src/main/scala/tutorial).
+To write a Firrtl transform, please start with the tutorial here: [src/main/scala/tutorial](https://github.com/freechipsproject/firrtl/blob/master/src/main/scala/tutorial).
To run these examples:
```
sbt assembly
@@ -36,8 +36,8 @@ sbt assembly
* Firrtl syntax highlighting for Vim users: https://github.com/azidar/firrtl-syntax
* Firrtl syntax highlighting for Sublime Text 3 users: https://github.com/codelec/highlight-firrtl
* Firrtl mode for Emacs users: https://github.com/ibm/firrtl-mode
-* Chisel3, an embedded hardware DSL that generates Firrtl: https://github.com/ucb-bar/chisel3
-* Firrtl Interpreter: https://github.com/ucb-bar/firrtl-interpreter
+* Chisel3, an embedded hardware DSL that generates Firrtl: https://github.com/freechipsproject/chisel3
+* Treadle, a Firrtl Interpreter: https://github.com/freechipsproject/treadle
* Yosys Verilog-to-Firrtl Front-end: https://github.com/cliffordwolf/yosys
#### Installation Instructions