More documentation updates

This commit is contained in:
Jeff Parsons 2016-04-08 22:45:25 -07:00
commit 231ca3961e
24 changed files with 184 additions and 18 deletions

View file

@ -30,7 +30,7 @@ Our [Publication Archive](/pubs/) includes these PC-related resources:
* [Magazines](/pubs/pc/magazines/)
* [Programming Guides](/pubs/pc/programming/)
* [Reference Manuals](/pubs/pc/reference/)
* [Software User and Development Guides](/pubs/pc/software/) (eg, DOS, [OS/2](/pubs/pc/software/os2/), Windows)
* [Software User and Development Guides](/pubs/pc/software/) (eg, [DOS](/pubs/pc/software/dos/), [OS/2](/pubs/pc/software/os2/), [Windows](/pubs/pc/software/windows/))
And publications related to Ohio Scientific's 6502-based Challenger 1P:

View file

@ -7,16 +7,16 @@ permalink: /pubs/
Publication Archive
---
We have an assortment of PC-related resources:
[PC Publications](pc/):
* [CPU Documents](/pubs/pc/reference/intel/)
* [Datasheets](/pubs/pc/datasheets/)
* [Magazines](/pubs/pc/magazines/)
* [Programming Guides](/pubs/pc/programming/)
* [Reference Manuals](/pubs/pc/reference/)
* [Software User and Development Guides](/pubs/pc/software/) (eg, DOS, [OS/2](/pubs/pc/software/os2/), Windows)
* [Software User and Development Guides](/pubs/pc/software/) (eg, [DOS](/pubs/pc/software/dos/), [OS/2](/pubs/pc/software/os2/), [Windows](/pubs/pc/software/windows/))
Publications related to Ohio Scientific's 6502-based Challenger 1P:
Ohio Scientific's 6502-based [Challenger 1P Publications](c1p/):
* [Datasheets](/pubs/c1p/datasheets/)
* [Programming Guides/Samples](/pubs/c1p/programming/)

View file

@ -13,7 +13,7 @@ We have an assortment of PC-related resources:
* [Magazines](/pubs/pc/magazines/)
* [Programming Guides](/pubs/pc/programming/)
* [Reference Manuals](/pubs/pc/reference/)
* [Software User and Development Guides](/pubs/pc/software/) (eg, DOS, [OS/2](/pubs/pc/software/os2/), Windows)
* [Software User and Development Guides](/pubs/pc/software/) (eg, [DOS](/pubs/pc/software/dos/), [OS/2](/pubs/pc/software/os2/), [Windows](/pubs/pc/software/windows/))
[<img src="http://archive.pcjs.org/pubs/pc/datasheets/thumbs/8088-CPU.jpg" width="200" height="260" alt= "8088 CPU"/>](pc/datasheets/)
[<img src="http://archive.pcjs.org/pubs/pc/magazines/byte/BYTE-1975-11/thumbs/BYTE-1975-11 1.jpeg" width="200" height="260" alt= "Byte Magazine"/>](pc/magazines/byte/)

View file

@ -7,13 +7,13 @@ permalink: /pubs/pc/software/
PC Software User Guides
---
* [IBM PC Disk Operating System v1.00](dos/PCDOS100/)
* [IBM PC Disk Operating System v1.10](dos/PCDOS110/)
* [PC-DOS Manuals](dos/)
PC Software Development Guides
---
* [OS/2 Software Development Guides](os2/)
* [OS/2 Software Guides](os2/)
* [Windows Software Guides](windows/)
PC Software Development Tools
---

View file

@ -4,7 +4,7 @@ title: PC-DOS Manuals
permalink: /pubs/pc/software/dos/
---
PC-DOS Manuals
IBM PC-DOS Manuals
---
* [IBM PC Disk Operating System v1.00](PCDOS100/)

View file

@ -1,6 +1,6 @@
---
layout: page
title: "OS/2 Programming Guides"
title: OS/2 Software Guides
permalink: /pubs/pc/software/os2/
redirect_from:
- /pubs/pc/programming/os2/

View file

@ -0,0 +1,11 @@
---
layout: page
title: Windows Software Guides
permalink: /pubs/pc/software/windows/
---
Windows Software Development Guides
---
* Windows SDK 1.03
* [Windows SDK 2.00](sdk200/)

View file

@ -0,0 +1,14 @@
---
layout: page
title: Windows SDK 2.00
permalink: /pubs/pc/software/windows/sdk200/
---
Windows Software Development Kit 2.00
---
* Programmers Reference [[external](http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-prgref-1987.pdf)]
* Programming Tools [[external](http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-tools-1987.pdf)]
* Application Style Guide [[external](http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-styleguide-1987.pdf)]
* Windows Extensions [[external](http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-extensions-1987.pdf)]
* Programmer's Learning Guide [[external](http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-lguide-1987.pdf)]

View file

@ -2,7 +2,7 @@
<?xml-stylesheet type="text/xsl" href="/versions/pcjs/1.21.6/manifest.xsl"?>
<manifest type="document">
<title>Microsoft Windows Software Development Kit</title>
<version>2.0</version>
<version>2.00</version>
<source href="http://os2museum.com">os2museum.com</source>
<document href="http://www.os2museum.com/files/docs/win20sdk/windows-2.0-sdk-prgref-1987.pdf">
<name id="050051053-200-I02-1087">Programmers Reference</name>

10
tests/README.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: page
title: Test Resources
permalink: /tests/
---
Test Resources
---
An assortment of [PC Tests](pc/) is available.

10
tests/pc/80386/README.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: page
title: 80386 Tests
permalink: /tests/pc/80386/
---
Overview
---
See [test386.asm](test386.asm).

View file

@ -1,7 +1,7 @@
all: test386.json test386.img
test386.com: test386.nasm ../inc/dos.inc ../inc/misc.inc ../inc/x86.inc
nasm -i../inc/ -f bin test386.nasm -l test386.lst -o test386.com
test386.com: test386.asm ../inc/dos.inc ../inc/misc.inc ../inc/x86.inc
nasm -i../inc/ -f bin test386.asm -l test386.lst -o test386.com
test386.json: test386.com
node ../../../modules/filedump/bin/filedump --file=test386.com --output=test386.json --overwrite

View file

@ -1,5 +1,5 @@
;
; test386.nasm
; test386.asm
; Copyright © 2012-2015 Jeff Parsons <Jeff@pcjs.org>
;
; This file is part of PCjs, which is part of the JavaScript Machines Project (aka JSMachines)

12
tests/pc/README.md Normal file
View file

@ -0,0 +1,12 @@
---
layout: page
title: PC Test Resources
permalink: /tests/pc/
---
PC Test Resources
---
* [80386 Tests](80386/)
* [Trace Utility](trace/)
* [VGA "Black Book" Tests](vga/)

View file

@ -1,4 +1,7 @@
Overview
---
layout: page
title: PC Trace Utility
permalink: /tests/pc/trace/
---
WARNING: This utility is obsolete. It has been superseded by [test386](/tests/pc/80386/),
@ -6,6 +9,7 @@ which, going forward, serves as our new model for instruction-level testing. As
the **traceLog()** functionality mentioned below has been removed from the PCjs source code
(but you can always dig it back up if you really want it).
Overview
---
TRACE.COM takes an instruction log, as recorded by the PCjs Debugger's traceLog() function, and
@ -32,6 +36,7 @@ instructions, even though we'll be missing OVERFLOW validation for all single-bi
Operation
---
To load TRACE.COM and TRACE.TXT onto a virtual disk image that PCjs can access, you can add an
"automount" setting to your PCjs <fdc> configuration that will dynamically generate a fresh disk image
every time the machine is loaded, via the DiskDump API. This is useful when you're constantly

View file

@ -1,3 +1,10 @@
Released Versions
---
Current and past versions of [PCjs](pcjs/) and [C1Pjs](c1pjs/) are maintained here.
layout: page
title: Emulator Releases
permalink: /versions/
---
Emulator Releases
---
Current and past releases of the [PCjs](pcjs/) and [C1Pjs](c1pjs/) emulators are maintained here.

30
versions/c1pjs/README.md vendored Normal file
View file

@ -0,0 +1,30 @@
---
layout: page
title: C1Pjs Emulator Releases
permalink: /versions/c1pjs/
redirect_from:
- /versions/c1pjs/1.15.4/
- /versions/c1pjs/1.16.0/
- /versions/c1pjs/1.16.1/
- /versions/c1pjs/1.16.2/
- /versions/c1pjs/1.16.3/
- /versions/c1pjs/1.16.4/
- /versions/c1pjs/1.17.3/
- /versions/c1pjs/1.17.4/
- /versions/c1pjs/1.17.5/
- /versions/c1pjs/1.17.6/
- /versions/c1pjs/1.18.0/
- /versions/c1pjs/1.18.1/
- /versions/c1pjs/1.18.2/
- /versions/c1pjs/1.18.5/
- /versions/c1pjs/1.18.6/
- /versions/c1pjs/1.18.7/
- /versions/c1pjs/1.18.8/
- /versions/c1pjs/1.19.4/
- /versions/c1pjs/1.19.6/
---
C1Pjs Emulator Releases
---
The current version of C1Pjs is [{{ site.pcjs.version }}]({{ site.pcjs.version }}/c1p.js).

10
versions/icons/README.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: page
title: Project Icons
permalink: /versions/icons/
---
Project Icons
---
* [Current Project Icons](current/)

View file

@ -0,0 +1,10 @@
---
layout: page
title: Current Project Icons
permalink: /versions/icons/current/
---
Current Project Icons
---
![PC Icon](pc-icon-192.png)

10
versions/images/README.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: page
title: Project Images
permalink: /versions/images/
---
Project Images
---
* [Current Project Images](current/)

View file

@ -0,0 +1,10 @@
---
layout: page
title: Current Project Images
permalink: /versions/images/current/
---
Current Project Images
---
![Selector](selector.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 KiB

27
versions/pcjs/README.md vendored Normal file
View file

@ -0,0 +1,27 @@
---
layout: page
title: PCjs Emulator Releases
permalink: /versions/pcjs/
redirect_from:
- /versions/pcjs/1.00/screenshots/
- /versions/pcjs/1.15.6/
- /versions/pcjs/1.15.7/
- /versions/pcjs/1.15.9/
- /versions/pcjs/1.16.2/
- /versions/pcjs/1.16.4/
- /versions/pcjs/1.16.5/
- /versions/pcjs/1.17.1/
- /versions/pcjs/1.18.1/
- /versions/pcjs/1.18.6/
- /versions/pcjs/1.18.7/
- /versions/pcjs/1.18.7/machine.xsl/
- /versions/pcjs/1.19.2/
- /versions/pcjs/1.19.4/
- /versions/pcjs/1.19.5/
- /versions/pcjs/1.19.6/
---
PCjs Emulator Releases
---
The current version of PCjs is [{{ site.pcjs.version }}]({{ site.pcjs.version }}/pc.js).