Updated PCx86 examples directory
This commit is contained in:
parent
2e07e3f9e1
commit
5529304137
9 changed files with 10 additions and 11 deletions
|
|
@ -630,7 +630,7 @@ module.exports = function(grunt) {
|
||||||
{
|
{
|
||||||
cwd: "versions/pcx86/<%= pkg.version %>/",
|
cwd: "versions/pcx86/<%= pkg.version %>/",
|
||||||
src: ["pcx86.js", "pcx86-dbg.js", "components.css", "components.xsl"],
|
src: ["pcx86.js", "pcx86-dbg.js", "components.css", "components.xsl"],
|
||||||
dest: "docs/pcx86/examples/",
|
dest: "pubs/pcx86/examples/",
|
||||||
expand: true
|
expand: true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -706,7 +706,7 @@ module.exports = function(grunt) {
|
||||||
args: []
|
args: []
|
||||||
},
|
},
|
||||||
"zip-examples": {
|
"zip-examples": {
|
||||||
options: {cwd: "docs/pcx86/examples"},
|
options: {cwd: "pubs/pcx86/examples"},
|
||||||
cmd: "./zip.sh",
|
cmd: "./zip.sh",
|
||||||
args: ["v" + pkg.version + ".zip"]
|
args: ["v" + pkg.version + ".zip"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ redirect_from:
|
||||||
---
|
---
|
||||||
|
|
||||||
IBM PC Device Configurations
|
IBM PC Device Configurations
|
||||||
---
|
----------------------------
|
||||||
|
|
||||||
All our [IBM PC Machines](machine/) are built from a collection of devices, including:
|
All our [IBM PC Machines](machine/) are built from a collection of devices, including:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Project documentation has been consolidated into /pubs
|
|
||||||
|
|
@ -17,13 +17,13 @@ Format
|
||||||
Purpose
|
Purpose
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Creates an instance of the ChipSet component, which includes support for the following internal components:
|
Creates an instance of the ChipSet component, which includes support for the following hardware:
|
||||||
|
|
||||||
* 8237 Direct Memory Access (DMA) Controller
|
* 8237 Direct Memory Access (DMA) Controller
|
||||||
* 8259 Programmable Interrupt Controller (PIC)
|
* 8259 Programmable Interrupt Controller (PIC)
|
||||||
* 8253 Programmable Interval Timers (PIT)
|
* 8253 Programmable Interval Timers (PIT)
|
||||||
* 8255 Programmable Peripheral Interface (PPI)
|
* 8255 Programmable Peripheral Interface (PPI)
|
||||||
* Speaker (sound requires [webkitAudioContext](http://www.w3.org/TR/webaudio/) support in the web browser)
|
* Speaker (sound requires [AudioContext](http://www.w3.org/TR/webaudio/) support in the web browser)
|
||||||
|
|
||||||
Attributes
|
Attributes
|
||||||
----------
|
----------
|
||||||
|
|
@ -63,7 +63,7 @@ Attributes
|
||||||
|
|
||||||
* *sound* (optional)
|
* *sound* (optional)
|
||||||
|
|
||||||
*true* (default) to enable sound, assuming the browser supports **webkitAudioContext**, or *false* to disable sound.
|
*true* (default) to enable sound, assuming the browser supports **AudioContext**, or *false* to disable sound.
|
||||||
|
|
||||||
* *scaleTimers* (optional)
|
* *scaleTimers* (optional)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>pcjs.org | /docs/pcjs/demos/example1.html</title>
|
<title>pcjs.org | /pubs/pcx86/examples/example1.html</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="components.css">
|
<link rel="stylesheet" type="text/css" href="components.css">
|
||||||
<script type="text/javascript" src="pcx86.js"></script>
|
<script type="text/javascript" src="pcx86.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>pcjs.org | /docs/pcjs/demos/example2.html</title>
|
<title>pcjs.org | /pubs/pcx86/examples/example2.html</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="components.css">
|
<link rel="stylesheet" type="text/css" href="components.css">
|
||||||
<script type="text/javascript" src="pcx86.js"></script>
|
<script type="text/javascript" src="pcx86.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>pcjs.org | /docs/pcjs/demos/example3a.html</title>
|
<title>pcjs.org | /pubs/pcx86/examples/example3a.html</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="components.css">
|
<link rel="stylesheet" type="text/css" href="components.css">
|
||||||
<script type="text/javascript" src="pcx86-dbg.js"></script>
|
<script type="text/javascript" src="pcx86-dbg.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>pcjs.org | /docs/pcjs/demos/example3b.html</title>
|
<title>pcjs.org | /pubs/pcx86/examples/example3b.html</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="components.css">
|
<link rel="stylesheet" type="text/css" href="components.css">
|
||||||
<script type="text/javascript" src="pcx86.js"></script>
|
<script type="text/javascript" src="pcx86.js"></script>
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in a new issue