File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 9
9
10
10
.PHONY : release
11
11
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
Original file line number Diff line number Diff line change @@ -271,6 +271,10 @@ select 'led' as the target. Please type the command as below.
271
271
Then you got a png file (out.png). The picture shows that the definition
272
272
of 'led' is a part-selection of 'count' from 23-bit to 16-bit.
273
273
274
+ .. figure :: img/out.png
275
+ :alt: out.png
276
+
277
+ out.png
274
278
275
279
Control-flow analyzer
276
280
---------------------
@@ -303,6 +307,10 @@ state machine.
303
307
You got also a png file (top\_ state.png). The picture shows that the
304
308
graphical structure of the state machine.
305
309
310
+ .. figure :: img/top_state.png
311
+ :alt: top\_state.png
312
+
313
+ top\_ state.png
306
314
307
315
Code generator
308
316
--------------
You can’t perform that action at this time.
0 commit comments