forked from wwarthen/RomWBW
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
100 additions
and
30 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
RomWBW ReadMe | ||
Wayne Warthen (wwarthen@gmail.com) | ||
05 Oct 2023 | ||
06 Oct 2023 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
*********************************************************************** | ||
*** *** | ||
*** R o m W B W *** | ||
*** *** | ||
*** Z80/Z180 System Software *** | ||
*** *** | ||
*********************************************************************** | ||
|
||
This document describes the process to build the custom documentation | ||
for RomWBW. The RomWBW documentation is not normally built as part of | ||
the full build process. This is because it requires external tools | ||
to be installed. | ||
|
||
All source documents are first pre-processed with gpp to allow use of | ||
some global variable expansions. Pandoc is then used to generate a | ||
variety of output formats. The most significant of these are the PDF | ||
documents. Pandoc invokes a Latex-type processor (LuaTeX) to | ||
produce the final PDF documents. | ||
|
||
Required for Windows: | ||
- Pandoc (https://pandoc.org/) | ||
- MiKTeX (https://miktex.org/) | ||
- Install Roboto font from MiKTeX Console | ||
|
||
Required for Linux: | ||
- gpp ((apt install gpp) | ||
- Pandoc (dpkg -i pandoc-3.1.8-1-amd64.deb) | ||
- TexLive (apt install texlive-latex-extra texlive-luatex fonts-roboto texlive-fonts-extra) | ||
|
||
The source directory for the documentation is .../Source/Doc. From this | ||
directory run Build.cmd for Windows or make for Linux to create the | ||
output documents. This will create the final documents and copy them | ||
to their destination directories. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ rmn equ 4 | |
rup equ 0 | ||
rtp equ 0 | ||
biosver macro | ||
db "3.4.0-dev.0" | ||
db "3.4.0-dev.1" | ||
endm |