Skip to content

Commit 437709b

Browse files
committed
README.rst is updated
1 parent a425ab1 commit 437709b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ clean:
99

1010
.PHONY: release
1111
release:
12-
pandoc README.md -t rst | awk 'BEGIN{ skip=0 }; { if(match($$0, /\.\. figure.*/)) { skip=3 } else if(skip==0) { print } else if(skip>0) { skip=skip-1 } };' > README.rst
12+
# pandoc README.md -t rst | awk 'BEGIN{ skip=0 }; { if(match($$0, /\.\. figure.*/)) { skip=3 } else if(skip==0) { print } else if(skip>0) { skip=skip-1 } };' > README.rst
13+
pandoc README.md -t rst > README.rst

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,10 @@ select 'led' as the target. Please type the command as below.
271271
Then you got a png file (out.png). The picture shows that the definition
272272
of 'led' is a part-selection of 'count' from 23-bit to 16-bit.
273273

274+
.. figure:: img/out.png
275+
:alt: out.png
276+
277+
out.png
274278

275279
Control-flow analyzer
276280
---------------------
@@ -303,6 +307,10 @@ state machine.
303307
You got also a png file (top\_state.png). The picture shows that the
304308
graphical structure of the state machine.
305309

310+
.. figure:: img/top_state.png
311+
:alt: top\_state.png
312+
313+
top\_state.png
306314

307315
Code generator
308316
--------------

0 commit comments

Comments
 (0)