Skip to content

Commit 1f48812

Browse files
authored
Merge pull request #309 from JeffDeCola/develop
updating pics to .svg and checking all links
2 parents d499973 + be24c60 commit 1f48812

File tree

8 files changed

+25
-3
lines changed

8 files changed

+25
-3
lines changed
Binary file not shown.

docs/pics/sequential-logic/mealy-moore-state-machines.svg

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

docs/pics/sequential-logic/mealy_state_machine.svg

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

docs/pics/sequential-logic/moore_state_machine.svg

Lines changed: 1 addition & 0 deletions
Loading

sequential-logic/finite-state-machines/mealy_state_machine/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# MEALY STATE MACHINE 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
_Recognize the pattern 00110 in a serial stream.
47
Output depends on current state and current inputs._
58

@@ -12,8 +15,17 @@ Table of Contents
1215
* [VIEW WAVEFORM](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/mealy_state_machine#view-waveform)
1316
* [TESTED IN HARDWARE - BURNED TO A FPGA](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/mealy_state_machine#tested-in-hardware---burned-to-a-fpga)
1417

18+
Documentation and Reference
19+
20+
* [moore_state_machine](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/moore_state_machine)
21+
1522
## OVERVIEW
1623

24+
I like mealy state machines because they are more intuitive.
25+
I'm not a fan of moore state machines.
26+
27+
![IMAGE - mealy-moore-state-machines.svg - IMAGE](../../../docs/pics/sequential-logic/mealy-moore-state-machines.svg)
28+
1729
_I used
1830
[iverilog](https://github.com/JeffDeCola/my-cheat-sheets/tree/master/hardware/tools/simulation/iverilog-cheat-sheet)
1931
to simulate and
@@ -28,7 +40,7 @@ FPGA development board._
2840

2941
This may help,
3042

31-
![IMAGE - mealy_state_machine.jpg - IMAGE](../../../docs/pics/sequential-logic/mealy_state_machine.jpg)
43+
![IMAGE - mealy_state_machine.svg - IMAGE](../../../docs/pics/sequential-logic/mealy_state_machine.svg)
3244

3345
## VERILOG CODE
3446

sequential-logic/finite-state-machines/moore_state_machine/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# MOORE STATE MACHINE 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
_Recognize the pattern 00110 in a serial stream.
47
Output depends on current state only._
58

@@ -12,12 +15,16 @@ Table of Contents
1215
* [VIEW WAVEFORM](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/moore_state_machine#view-waveform)
1316
* [TESTED IN HARDWARE - BURNED TO A FPGA](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/moore_state_machine#tested-in-hardware---burned-to-a-fpga)
1417

18+
Documentation and Reference
19+
20+
* [mealy_state_machine](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/finite-state-machines/mealy_state_machine)
21+
1522
## OVERVIEW
1623

1724
I like mealy state machines because they are more intuitive.
1825
I'm not a fan of moore state machines.
1926

20-
![IMAGE - mealy-moore-state-machines.jpg - IMAGE](../../../docs/pics/sequential-logic/mealy-moore-state-machines.jpg)
27+
![IMAGE - mealy-moore-state-machines.svg - IMAGE](../../../docs/pics/sequential-logic/mealy-moore-state-machines.svg)
2128

2229
_I used
2330
[iverilog](https://github.com/JeffDeCola/my-cheat-sheets/tree/master/hardware/tools/simulation/iverilog-cheat-sheet)
@@ -33,7 +40,7 @@ FPGA development board._
3340

3441
This may help,
3542

36-
![IMAGE - moore_state_machine.jpg - IMAGE](../../../docs/pics/sequential-logic/moore_state_machine.jpg)
43+
![IMAGE - moore_state_machine.svg - IMAGE](../../../docs/pics/sequential-logic/moore_state_machine.svg)
3744

3845
## VERILOG CODE
3946

0 commit comments

Comments
 (0)