Skip to content

Commit 99a1eb1

Browse files
committed
updating pics to .svg and checking all links
1 parent be24c60 commit 99a1eb1

27 files changed

+106
-10
lines changed
Binary file not shown.

docs/pics/sequential-logic/dual_port_ram_asynchronous.svg

Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.

docs/pics/sequential-logic/dual_port_ram_synchronous.svg

Lines changed: 1 addition & 0 deletions
Loading
-45.2 KB
Binary file not shown.

docs/pics/sequential-logic/fifo_asynchronous.svg

Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.

docs/pics/sequential-logic/fifo_compare_and_status.svg

Lines changed: 1 addition & 0 deletions
Loading
-331 KB
Binary file not shown.

docs/pics/sequential-logic/fifo_synchronous.svg

Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.

docs/pics/sequential-logic/lifo_compare_and_status.svg

Lines changed: 1 addition & 0 deletions
Loading
-41.6 KB
Binary file not shown.

docs/pics/sequential-logic/lifo_synchronous.svg

Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.

docs/pics/sequential-logic/simple-8-bit-register.svg

Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.

docs/pics/sequential-logic/single_port_ram_synchronous.svg

Lines changed: 1 addition & 0 deletions
Loading

sequential-logic/memory/dual_port_ram_asynchronous/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# DUAL-PORT RAM ASYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_Dual-port asynchronous RAM using two different clocks._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
12+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
13+
**(You are here)**
14+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
15+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
16+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous#overview)
@@ -34,7 +47,7 @@ FPGA development board._
3447

3548
This may help,
3649

37-
![IMAGE - dual_port_ram_asynchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/dual_port_ram_asynchronous.jpg)
50+
![IMAGE - dual_port_ram_asynchronous.svg - IMAGE](../../../docs/pics/sequential-logic/dual_port_ram_asynchronous.svg)
3851

3952
## TRUTH TABLE
4053

sequential-logic/memory/dual_port_ram_synchronous/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# DUAL-PORT RAM SYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_Dual-port synchronous RAM._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
12+
**(You are here)**
13+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
14+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
15+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
16+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous#overview)
@@ -34,7 +47,7 @@ FPGA development board._
3447

3548
This may help,
3649

37-
![IMAGE - dual_port_ram_synchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/dual_port_ram_synchronous.jpg)
50+
![IMAGE - dual_port_ram_synchronous.svg - IMAGE](../../../docs/pics/sequential-logic/dual_port_ram_synchronous.svg)
3851

3952
## TRUTH TABLE
4053

sequential-logic/memory/fifo_asynchronous/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# FIFO ASYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_An asynchronous fifo using dual-port asynchronous RAM._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
12+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
13+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
14+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
15+
**(You are here)**
16+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous#overview)
@@ -43,11 +56,11 @@ This fifo uses my dual port asynchronous RAM.
4356

4457
The structure is,
4558

46-
![IMAGE - fifo_asynchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/fifo_asynchronous.jpg)
59+
![IMAGE - fifo_asynchronous.svg - IMAGE](../../../docs/pics/sequential-logic/fifo_asynchronous.svg)
4760

4861
The full and empy logic is,
4962

50-
![IMAGE - fifo_compare_and_status.jpg - IMAGE](../../../docs/pics/sequential-logic/fifo_compare_and_status.jpg)
63+
![IMAGE - fifo_compare_and_status.svg - IMAGE](../../../docs/pics/sequential-logic/fifo_compare_and_status.svg)
5164

5265
## TRUTH TABLE
5366

sequential-logic/memory/fifo_synchronous/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# FIFO SYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_A synchronous fifo using dual-port synchronous RAM._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
12+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
13+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
14+
**(You are here)**
15+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
16+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous#overview)
@@ -43,11 +56,11 @@ This fifo uses my dual port synchronous RAM.
4356

4457
The structure is,
4558

46-
![IMAGE - fifo_synchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/fifo_synchronous.jpg)
59+
![IMAGE - fifo_synchronous.svg - IMAGE](../../../docs/pics/sequential-logic/fifo_synchronous.svg)
4760

4861
The full and empty logic is,
4962

50-
![IMAGE - fifo_compare_and_status.jpg - IMAGE](../../../docs/pics/sequential-logic/fifo_compare_and_status.jpg)
63+
![IMAGE - fifo_compare_and_status.svg - IMAGE](../../../docs/pics/sequential-logic/fifo_compare_and_status.svg)
5164

5265
## TRUTH TABLE
5366

sequential-logic/memory/lifo_synchronous/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# LIFO SYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_A synchronous lifo using dual-port synchronous RAM._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
12+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
13+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
14+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
15+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
16+
**(You are here)**
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous#overview)
@@ -43,11 +56,11 @@ This fifo uses my dual port synchronous RAM.
4356

4457
The structure is,
4558

46-
![IMAGE - lifo_synchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/lifo_synchronous.jpg)
59+
![IMAGE - lifo_synchronous.svg - IMAGE](../../../docs/pics/sequential-logic/lifo_synchronous.svg)
4760

4861
The full and empy logic is,
4962

50-
![IMAGE - fifo_compare_and_status.jpg - IMAGE](../../../docs/pics/sequential-logic/lifo_compare_and_status.jpg)
63+
![IMAGE - fifo_compare_and_status.svg - IMAGE](../../../docs/pics/sequential-logic/lifo_compare_and_status.svg)
5164

5265
## TRUTH TABLE
5366

sequential-logic/memory/single_port_ram_synchronous/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# SINGLE-PORT RAM SYNCHRONOUS EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_Single-port synchronous RAM._
47

8+
Other Memory Architectures
9+
10+
* [single_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous)
11+
**(You are here)**
12+
* [dual_port_ram_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_synchronous)
13+
* [dual_port_ram_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/dual_port_ram_asynchronous)
14+
* [fifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_synchronous)
15+
* [fifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/fifo_asynchronous)
16+
* [lifo_synchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_synchronous)
17+
518
Table of Contents
619

720
* [OVERVIEW](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/single_port_ram_synchronous#overview)
@@ -33,7 +46,7 @@ FPGA development board._
3346

3447
This may help,
3548

36-
![IMAGE - single_port_ram_synchronous.jpg - IMAGE](../../../docs/pics/sequential-logic/single_port_ram_synchronous.jpg)
49+
![IMAGE - single_port_ram_synchronous.svg - IMAGE](../../../docs/pics/sequential-logic/single_port_ram_synchronous.svg)
3750

3851
## TRUTH TABLE
3952

sequential-logic/registers/jeff_74x377/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# JEFF 74x377 EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_8-bit register, clock enable.
47
Based on the 7400-series integrated circuits used in my
58
[programable_8_bit_microprocessor](https://github.com/JeffDeCola/my-verilog-examples/tree/master/systems/microprocessors/programable_8_bit_microprocessor)._

sequential-logic/registers/simple_8_bit_register/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# SIMPLE 8-BIT REGISTER EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_A simple 8-bit register with synchronous load and clear._
47

58
Table of Contents
@@ -28,7 +31,7 @@ FPGA development board._
2831

2932
This may help,
3033

31-
![IMAGE - simple-8-bit-register.jpg - IMAGE](../../../docs/pics/sequential-logic/simple-8-bit-register.jpg)
34+
![IMAGE - simple-8-bit-register.svg - IMAGE](../../../docs/pics/sequential-logic/simple-8-bit-register.svg)
3235

3336
## TRUTH TABLE
3437

sequential-logic/shifters/left_shift_register/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# LEFT SHIFT REGISTER EXAMPLE
22

3+
[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)
4+
[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)
5+
36
_A 4-bit left shift register._
47

58
Table of Contents

0 commit comments

Comments
 (0)