diff options
author | N. Engelhardt <nak@symbioticeda.com> | 2021-03-23 17:41:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 17:41:13 +0100 |
commit | 049e3abf9baf795e69b9ecb9c4f19de6131f8418 (patch) | |
tree | 7a25547cc993ab7039827639543cdb21b7117a13 /manual/CHAPTER_Prog.tex | |
parent | 4a35f244aa6ac187610cae0014d261e38cbab550 (diff) | |
parent | d9ec35a526b9583727ef484ec68bc288dcddb0c8 (diff) | |
download | yosys-049e3abf9baf795e69b9ecb9c4f19de6131f8418.tar.gz yosys-049e3abf9baf795e69b9ecb9c4f19de6131f8418.tar.bz2 yosys-049e3abf9baf795e69b9ecb9c4f19de6131f8418.zip |
Merge pull request #2696 from nakengelhardt/guidelines
split CodingReadme into multiple files
Diffstat (limited to 'manual/CHAPTER_Prog.tex')
-rw-r--r-- | manual/CHAPTER_Prog.tex | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/manual/CHAPTER_Prog.tex b/manual/CHAPTER_Prog.tex index 3cbc95a19..49432f73b 100644 --- a/manual/CHAPTER_Prog.tex +++ b/manual/CHAPTER_Prog.tex @@ -5,13 +5,15 @@ This chapter contains some bits and pieces of information about programming yosys extensions. Also consult the section on programming in the ``Yosys Presentation'' (can be downloaded from the Yosys website as PDF) and don't -be afraid to ask questions on the Yosys Subreddit. +be afraid to ask questions on the YosysHQ Slack. -\section{The ``CodingReadme'' File} +\section{Guidelines} -The following is an excerpt of the {\tt CodingReadme} file from the Yosys source tree. +The {\tt guidelines} directory contains notes on various aspects of Yosys development. The files {\tt GettingStarted} and {\tt CodingStyle} may be of particular interest, and are reproduced here. -\lstinputlisting[title=CodingReadme,rangeprefix=--,rangesuffix=--,includerangemarker=false,linerange=snip-snap,numbers=left,frame=single]{../CodingReadme} +\lstinputlisting[title=GettingStarted,numbers=left,frame=single]{../guidelines/GettingStarted} + +\lstinputlisting[title=CodingStyle,numbers=left,frame=single]{../guidelines/CodingStyle} \section{The ``stubsnets'' Example Module} @@ -23,4 +25,3 @@ The following is the complete code of the ``stubsnets'' example module. It is in \lstinputlisting[title=Makefile,numbers=left,frame=single,language=make]{CHAPTER_Prog/Makefile} \lstinputlisting[title=test.v,numbers=left,frame=single,language=Verilog]{CHAPTER_Prog/test.v} - |