summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-09-25 15:22:11 -0400
committerSchuyler Eldridge2019-09-25 15:22:51 -0400
commit70b59235cfef3c0391ddee0e406bc806e11a1557 (patch)
treee01a801c93fe50341c3fd1de09f24600a5f8f4de /README.md
parent8efe7c925c78f3393cb3cf658e7c5d8416aa731e (diff)
Use full URL links for images
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 13e38610..fb91897f 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Chisel is powered by [FIRRTL (Flexible Intermediate Representation for RTL)](htt
Consider an FIR filter that implements a convolution operation, as depicted in this block diagram:
-<img src="doc/images/fir_filter.svg?sanitize=true" width="512" />
+<img src="https://github.com/freechipsproject/chisel3/blob/readme-fix/doc/images/fir_filter.svg?sanitize=true" width="512" />
While Chisel provides similar base primitives as synthesizable Verilog, and *could* be used as such:
@@ -112,7 +112,7 @@ If you are migrating from Chisel2, see [the migration guide on the wiki](https:/
### Data Types Overview
These are the base data types for defining circuit wires (abstract types which may not be instantiated are greyed out):
-![Image](doc/images/type_hierarchy.png?raw=true)
+![Image](https://raw.githubusercontent.com/freechipsproject/chisel3/master/doc/images/type_hierarchy.svg?sanitize=true)
## Developer Documentation
This section describes how to get started developing Chisel itself, including how to test your version locally against other projects that pull in Chisel using [sbt's managed dependencies](https://www.scala-sbt.org/1.x/docs/Library-Dependencies.html).