Browse Source

Regen Documentation

pull/259/head
Wayne Warthen 4 years ago
parent
commit
d9d95e76dc
  1. BIN
      Doc/ROM Applications.pdf
  2. BIN
      Doc/RomWBW Applications.pdf
  3. BIN
      Doc/RomWBW Architecture.pdf
  4. BIN
      Doc/RomWBW Disk Catalog.pdf
  5. BIN
      Doc/RomWBW Getting Started.pdf
  6. 2
      ReadMe.md
  7. 2
      ReadMe.txt
  8. 2
      Source/Doc/Architecture.md
  9. 6
      Source/Doc/Build.cmd
  10. 5
      Source/Doc/Clean.cmd
  11. 2
      Source/ver.inc
  12. 2
      Source/ver.lib

BIN
Doc/ROM Applications.pdf

Binary file not shown.

BIN
Doc/RomWBW Applications.pdf

Binary file not shown.

BIN
Doc/RomWBW Architecture.pdf

Binary file not shown.

BIN
Doc/RomWBW Disk Catalog.pdf

Binary file not shown.

BIN
Doc/RomWBW Getting Started.pdf

Binary file not shown.

2
ReadMe.md

@ -3,7 +3,7 @@
## Z80/Z180 System Software
Version 3.1 Pre-release
Thu 10/21/2021
22 Oct 2021
Wayne Warthen <wwarthen@gmail.com>

2
ReadMe.txt

@ -3,7 +3,7 @@ RomWBW
Z80/Z180 System Software
Version 3.1 Pre-release
Thu 10/21/2021
22 Oct 2021
Wayne Warthen wwarthen@gmail.com

2
Source/Doc/Architecture.md

@ -196,7 +196,7 @@ simpler and more memory efficient to keep everything in RAM. At startup
Runtime Memory Layout
=====================
![Banked Switched Memory Layout](Graphics/BankSwitchedMemory){ width=80% }
![Bank Switched Memory Layout](Graphics/BankSwitchedMemory){ width=80% }
System Boot Process
===================

6
Source/Doc/Build.cmd

@ -39,6 +39,12 @@ echo Processing document %1.md...
gpp -o %1.tmp -U "\\" "" "{" "}{" "}" "{" "}" "#" "" %1.md
:: pandoc %1.tmp -f markdown -s -o %1.tex --default-image-extension=pdf || exit /b
:: pause
:: rem texify --pdf --clean %1.ltx || exit /b
:: texify --pdf %1.tex || exit /b
:: goto :eof
pandoc %1.tmp -f markdown -t pdf -s -o %1.pdf --default-image-extension=pdf || exit /b
pandoc %1.tmp -f markdown -t html -o %1.html --default-image-extension=png || exit /b
pandoc %1.tmp -f markdown -t dokuwiki -o %1.dw --default-image-extension=png || exit /b

5
Source/Doc/Clean.cmd

@ -8,3 +8,8 @@ if exist *.html del *.html
if exist *.tex del *.tex
if exist *.pdf del *.pdf
if exist *.tmp del *.tmp
if exist *.aux del *.aux
if exist *.ilg del *.ilg
if exist *.ind del *.ind
if exist *.log del *.log
if exist *.toc del *.toc

2
Source/ver.inc

@ -2,4 +2,4 @@
#DEFINE RMN 1
#DEFINE RUP 1
#DEFINE RTP 0
#DEFINE BIOSVER "3.1.1-pre.130"
#DEFINE BIOSVER "3.1.1-pre.131"

2
Source/ver.lib

@ -3,5 +3,5 @@ rmn equ 1
rup equ 1
rtp equ 0
biosver macro
db "3.1.1-pre.130"
db "3.1.1-pre.131"
endm

Loading…
Cancel
Save