diff --git a/_posts/2017-01-31-completing-the-switch-to-es6-classes.md b/_posts/2017-01-31-completing-the-switch-to-es6-classes.md
new file mode 100644
index 000000000..082832bff
--- /dev/null
+++ b/_posts/2017-01-31-completing-the-switch-to-es6-classes.md
@@ -0,0 +1,70 @@
+---
+layout: post
+title: Completing the Switch to ES6 Classes
+date: 2017-01-31 15:00:00
+permalink: /blog/2017/01/31/
+---
+
+As I [mentioned](/blog/2016/12/30/) last December, I had started converting PCjs machines to ECMAScript 2015, more
+conveniently known as ES6. At the time, only one PCjs machine, [PDPjs](/modules/pdp11/), had been converted, which
+left the website in the unfortunate position of having duplicate shared modules: one set for ES5-based machines
+and another set for ES6.
+
+Well, I'm happy to report that today marks the completion of the ES6 conversion, and the return of a single set of
+[shared modules](/modules/shared/lib/).
+
+Admittedly, I was dragging my feet a bit, because the largest and most complex machine emulator, [PCx86](/modules/pcx86/),
+was going to require a fair bit work, not to mention regression testing. However, after converting three other
+PCjs machines ([PDPjs](/modules/pdp11/), [PC8080](/modules/pc8080/), and [C1Pjs](/modules/c1pjs/)), I had become
+pretty proficient at the conversion, so I was able to bulldoze my way through all the PCx86 files in a few hours,
+and fixing all the Closure Compiler compilation errors only took another hour or so.
+
+It's hard to say whether the conversion was really worth the effort, since I'm still using the Closure Compiler to
+transpile the code back to ES5. Also, since two of the emulators ([PCx86](/modules/pcx86/) and [PDPjs](/modules/pdp11/))
+can also be launched from the Node command-line, I've adopted Node's *require()* convention for importing the other
+scripts as modules, which makes them difficult to load inside a web browser if you want to test or debug the uncompiled
+code.
+
+To resolve that, I updated the built-in Node web server to "magically" strip out all the Node-specific stuff before
+serving up the individual JavaScript files. Eventually, I'll change the Node server's page template to use
+`` instead of ``, but that won't happen until all
+web browsers support module loading AND Node fully supports *import* and *export* instead of *require()* and
+*module.exports*.
+
+I do like the new ES6 class syntax *much* more than the old prototype-based syntax. We've gone from JavaScript classes
+that were like "lipstick on a pig" to classes that are more like "lipstick on a piglet" -- still a pig, but much cuter.
+
+For years, JavaScript fans have been trying to convince us that "prototypal inheritance" was better and more powerful
+than traditional class-based inheritance models. As far as I'm concerned, object prototypes were a hack, and no amount
+of after-the-fact rationalizations will convince me that they were actually a thoughtfully designed feature of the
+language. Not to mention the fact that prototype-based classes are tedious to write and unpleasant to look at.
+
+Obviously, I was not alone, because we now have ES6 classes.
+
+Do I still have gripes? Sure. My biggest grumble is that I can't easily define class constants; I have to attach them
+to the class *after* I finish defining the class, and even then, I can't declare them as *const*. I guess there are
+ways to do it, such as:
+
+ Object.defineProperty(SampleClass, 'ANSWER', {
+ value: 42,
+ writable : false,
+ enumerable : true,
+ configurable : false
+ });
+
+But who in their right mind is going to write all that just to define a single numeric class constant? I would love to
+be able to add a class constant *inside* a class with a simple:
+
+ static const ANSWER = 42;
+
+Beyond ES6 classes, there are several other improvements I'd like to make to the PCjs code base, including more
+extensive use of:
+
+- [Default Parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters)
+- *[const](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const)* and *[let](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let)*
+- [Computed Properties](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names)
+
+Those changes will come, but on a more piecemeal basis, as code is visited.
+
+*[@jeffpar](http://twitter.com/jeffpar)*
+*Jan 31, 2017*
diff --git a/apps/pcx86/1981/visicalc/manifest.xml b/apps/pcx86/1981/visicalc/manifest.xml
index 2681c3981..de778a625 100644
--- a/apps/pcx86/1981/visicalc/manifest.xml
+++ b/apps/pcx86/1981/visicalc/manifest.xml
@@ -1,5 +1,5 @@
-
+
VisiCalc
diff --git a/apps/pcx86/1982/esuite/manifest.xml b/apps/pcx86/1982/esuite/manifest.xml
index a9312ce87..cb9abcce8 100644
--- a/apps/pcx86/1982/esuite/manifest.xml
+++ b/apps/pcx86/1982/esuite/manifest.xml
@@ -1,5 +1,5 @@
-
+
Executive Suite
diff --git a/apps/pcx86/1985/rogue/manifest.xml b/apps/pcx86/1985/rogue/manifest.xml
index 32a84d176..3f7e5384a 100644
--- a/apps/pcx86/1985/rogue/manifest.xml
+++ b/apps/pcx86/1985/rogue/manifest.xml
@@ -1,5 +1,5 @@
-
+
Rogue
diff --git a/apps/pcx86/1987/thinktank/manifest.xml b/apps/pcx86/1987/thinktank/manifest.xml
index ad632a20c..f5f16ab35 100644
--- a/apps/pcx86/1987/thinktank/manifest.xml
+++ b/apps/pcx86/1987/thinktank/manifest.xml
@@ -1,5 +1,5 @@
-
+
ThinkTank
2.41NP
diff --git a/apps/pcx86/1988/moria/manifest.xml b/apps/pcx86/1988/moria/manifest.xml
index a71401b8a..4f5ed367f 100644
--- a/apps/pcx86/1988/moria/manifest.xml
+++ b/apps/pcx86/1988/moria/manifest.xml
@@ -1,5 +1,5 @@
-
+
The Dungeons of Moria
4.872
diff --git a/apps/pcx86/1992/moria/manifest.xml b/apps/pcx86/1992/moria/manifest.xml
index 3a4064b5b..3ec4cc07b 100644
--- a/apps/pcx86/1992/moria/manifest.xml
+++ b/apps/pcx86/1992/moria/manifest.xml
@@ -1,5 +1,5 @@
-
+
The Dungeons of Moria
5.5
diff --git a/devices/c1p/machine/32kb/machine.xml b/devices/c1p/machine/32kb/machine.xml
index 1ceb524d2..bc6b9e74c 100644
--- a/devices/c1p/machine/32kb/machine.xml
+++ b/devices/c1p/machine/32kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
OSI Challenger 1P (32Kb) with Disk Support
diff --git a/devices/c1p/machine/8kb/all/debugger/machine.xml b/devices/c1p/machine/8kb/all/debugger/machine.xml
index be2cd25ef..2cd082967 100644
--- a/devices/c1p/machine/8kb/all/debugger/machine.xml
+++ b/devices/c1p/machine/8kb/all/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
OSI Challenger 1P (8Kb, Additional Software)
diff --git a/devices/c1p/machine/8kb/all/machine.xml b/devices/c1p/machine/8kb/all/machine.xml
index 8798cd145..4dc36356e 100644
--- a/devices/c1p/machine/8kb/all/machine.xml
+++ b/devices/c1p/machine/8kb/all/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
OSI Challenger 1P (8Kb, Additional Software)
diff --git a/devices/c1p/machine/8kb/array/machine.xml b/devices/c1p/machine/8kb/array/machine.xml
index c7635394e..f5aa45365 100644
--- a/devices/c1p/machine/8kb/array/machine.xml
+++ b/devices/c1p/machine/8kb/array/machine.xml
@@ -1,5 +1,5 @@
-
+
Challenger 1P (8Kb) "Server Array"
diff --git a/devices/c1p/machine/8kb/embed/machine.xml b/devices/c1p/machine/8kb/embed/machine.xml
index ba45b5253..d3b4bd711 100644
--- a/devices/c1p/machine/8kb/embed/machine.xml
+++ b/devices/c1p/machine/8kb/embed/machine.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/devices/c1p/machine/8kb/large/debugger/local.xml b/devices/c1p/machine/8kb/large/debugger/local.xml
index 7377978f2..b161127cf 100644
--- a/devices/c1p/machine/8kb/large/debugger/local.xml
+++ b/devices/c1p/machine/8kb/large/debugger/local.xml
@@ -1,6 +1,6 @@
-
+
OSI Challenger 1P (8Kb) with Debugger
diff --git a/devices/c1p/machine/8kb/large/debugger/machine.xml b/devices/c1p/machine/8kb/large/debugger/machine.xml
index 6d7bc7924..1c1c9a002 100644
--- a/devices/c1p/machine/8kb/large/debugger/machine.xml
+++ b/devices/c1p/machine/8kb/large/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
OSI Challenger 1P (8Kb) with Debugger
diff --git a/devices/c1p/machine/8kb/large/machine.xml b/devices/c1p/machine/8kb/large/machine.xml
index a73ff0965..8a401c0b1 100644
--- a/devices/c1p/machine/8kb/large/machine.xml
+++ b/devices/c1p/machine/8kb/large/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
OSI Challenger 1P (circa 1978)
diff --git a/devices/c1p/machine/8kb/small/machine.xml b/devices/c1p/machine/8kb/small/machine.xml
index 6e7397c30..e0db1b08a 100644
--- a/devices/c1p/machine/8kb/small/machine.xml
+++ b/devices/c1p/machine/8kb/small/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
diff --git a/devices/pc8080/machine/exerciser/machine-8080ex1.xml b/devices/pc8080/machine/exerciser/machine-8080ex1.xml
index f12c12e31..2254bd6e3 100644
--- a/devices/pc8080/machine/exerciser/machine-8080ex1.xml
+++ b/devices/pc8080/machine/exerciser/machine-8080ex1.xml
@@ -1,6 +1,6 @@
-
-
+
+
8080 Exerciser Test Machine
diff --git a/devices/pc8080/machine/exerciser/machine-8080pre.xml b/devices/pc8080/machine/exerciser/machine-8080pre.xml
index 183a2bfc9..73ede82c4 100644
--- a/devices/pc8080/machine/exerciser/machine-8080pre.xml
+++ b/devices/pc8080/machine/exerciser/machine-8080pre.xml
@@ -1,6 +1,6 @@
-
-
+
+
8080 Exerciser Preliminary Test Machine
diff --git a/devices/pc8080/machine/exerciser/machine-cputest.xml b/devices/pc8080/machine/exerciser/machine-cputest.xml
index 45e0b4970..2bc283eff 100644
--- a/devices/pc8080/machine/exerciser/machine-cputest.xml
+++ b/devices/pc8080/machine/exerciser/machine-cputest.xml
@@ -1,6 +1,6 @@
-
-
+
+
8080 CPUTEST Machine
diff --git a/devices/pc8080/machine/exerciser/machine-test.xml b/devices/pc8080/machine/exerciser/machine-test.xml
index 8893bbfd4..cee4080a2 100644
--- a/devices/pc8080/machine/exerciser/machine-test.xml
+++ b/devices/pc8080/machine/exerciser/machine-test.xml
@@ -1,6 +1,6 @@
-
-
+
+
8080 "Kelly Smith" Test Machine
diff --git a/devices/pc8080/machine/exerciser/machine.xml b/devices/pc8080/machine/exerciser/machine.xml
index f12c12e31..2254bd6e3 100644
--- a/devices/pc8080/machine/exerciser/machine.xml
+++ b/devices/pc8080/machine/exerciser/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
8080 Exerciser Test Machine
diff --git a/devices/pc8080/machine/invaders/debugger/machine.xml b/devices/pc8080/machine/invaders/debugger/machine.xml
index 6166b7033..cbb3d7388 100644
--- a/devices/pc8080/machine/invaders/debugger/machine.xml
+++ b/devices/pc8080/machine/invaders/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Space Invaders
diff --git a/devices/pc8080/machine/invaders/machine.xml b/devices/pc8080/machine/invaders/machine.xml
index 57394e37e..c380f745b 100644
--- a/devices/pc8080/machine/invaders/machine.xml
+++ b/devices/pc8080/machine/invaders/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Space Invaders
diff --git a/devices/pc8080/machine/vt100/debugger/machine-left.xml b/devices/pc8080/machine/vt100/debugger/machine-left.xml
index d243d6859..555be3aec 100644
--- a/devices/pc8080/machine/vt100/debugger/machine-left.xml
+++ b/devices/pc8080/machine/vt100/debugger/machine-left.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pc8080/machine/vt100/debugger/machine-right.xml b/devices/pc8080/machine/vt100/debugger/machine-right.xml
index 2dba8bd90..714022f85 100644
--- a/devices/pc8080/machine/vt100/debugger/machine-right.xml
+++ b/devices/pc8080/machine/vt100/debugger/machine-right.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pc8080/machine/vt100/debugger/machine.xml b/devices/pc8080/machine/vt100/debugger/machine.xml
index 43194cdec..e7ef2c478 100644
--- a/devices/pc8080/machine/vt100/debugger/machine.xml
+++ b/devices/pc8080/machine/vt100/debugger/machine.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pc8080/machine/vt100/machine-left.xml b/devices/pc8080/machine/vt100/machine-left.xml
index 7aaeec8b2..62e655b90 100644
--- a/devices/pc8080/machine/vt100/machine-left.xml
+++ b/devices/pc8080/machine/vt100/machine-left.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pc8080/machine/vt100/machine-right.xml b/devices/pc8080/machine/vt100/machine-right.xml
index 732ada8cf..f1d25a826 100644
--- a/devices/pc8080/machine/vt100/machine-right.xml
+++ b/devices/pc8080/machine/vt100/machine-right.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pc8080/machine/vt100/machine.xml b/devices/pc8080/machine/vt100/machine.xml
index 420c20504..f70cae81b 100644
--- a/devices/pc8080/machine/vt100/machine.xml
+++ b/devices/pc8080/machine/vt100/machine.xml
@@ -1,5 +1,5 @@
-
+
VT100 Terminal
diff --git a/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml b/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml
index 1d3784a26..d7adf02f4 100644
--- a/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150), CGA, 384K
diff --git a/devices/pcx86/machine/5150/cga/64kb/donkey/debugger/machine.xml b/devices/pcx86/machine/5150/cga/64kb/donkey/debugger/machine.xml
index 388310b2c..765b3cdf1 100644
--- a/devices/pcx86/machine/5150/cga/64kb/donkey/debugger/machine.xml
+++ b/devices/pcx86/machine/5150/cga/64kb/donkey/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150), CGA, 64K
diff --git a/devices/pcx86/machine/5150/cga/64kb/donkey/machine.xml b/devices/pcx86/machine/5150/cga/64kb/donkey/machine.xml
index 9e3af207d..895d63b4a 100644
--- a/devices/pcx86/machine/5150/cga/64kb/donkey/machine.xml
+++ b/devices/pcx86/machine/5150/cga/64kb/donkey/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150), CGA, 64K
diff --git a/devices/pcx86/machine/5150/cga/64kb/softkbd/machine.xml b/devices/pcx86/machine/5150/cga/64kb/softkbd/machine.xml
index 4c865ae94..9efa45377 100644
--- a/devices/pcx86/machine/5150/cga/64kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5150/cga/64kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150), CGA, 64K
diff --git a/devices/pcx86/machine/5150/dual/64kb/machine.xml b/devices/pcx86/machine/5150/dual/64kb/machine.xml
index ac0e10b8e..f7ce4b2f2 100644
--- a/devices/pcx86/machine/5150/dual/64kb/machine.xml
+++ b/devices/pcx86/machine/5150/dual/64kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150) with Dual Displays
diff --git a/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml b/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml
index 58cb8dd17..500e81fb0 100644
--- a/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150) with Monochrome Display
diff --git a/devices/pcx86/machine/5150/mda/64kb/machine.xml b/devices/pcx86/machine/5150/mda/64kb/machine.xml
index 4adbdba1f..56fba37b8 100644
--- a/devices/pcx86/machine/5150/mda/64kb/machine.xml
+++ b/devices/pcx86/machine/5150/mda/64kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150) with Monochrome Display
diff --git a/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml b/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml
index 73f862f25..13ed55977 100644
--- a/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150), MDA, 64K
diff --git a/devices/pcx86/machine/5160/cga/256kb/array/machine.xml b/devices/pcx86/machine/5160/cga/256kb/array/machine.xml
index 31a401270..b7f1e17de 100644
--- a/devices/pcx86/machine/5160/cga/256kb/array/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/array/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/256kb/demo/debugger/machine.xml b/devices/pcx86/machine/5160/cga/256kb/demo/debugger/machine.xml
index f45bedbd9..b841f9a5c 100644
--- a/devices/pcx86/machine/5160/cga/256kb/demo/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/demo/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/256kb/demo/machine.xml b/devices/pcx86/machine/5160/cga/256kb/demo/machine.xml
index 04a787c11..485f5abc9 100644
--- a/devices/pcx86/machine/5160/cga/256kb/demo/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/demo/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/256kb/softkbd/machine.xml b/devices/pcx86/machine/5160/cga/256kb/softkbd/machine.xml
index 28402d2a1..8f387f1b9 100644
--- a/devices/pcx86/machine/5160/cga/256kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/256kb/win101/debugger/machine.xml b/devices/pcx86/machine/5160/cga/256kb/win101/debugger/machine.xml
index e5bdae8d3..1eb60a450 100644
--- a/devices/pcx86/machine/5160/cga/256kb/win101/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/win101/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160) running Windows 1.01
diff --git a/devices/pcx86/machine/5160/cga/256kb/win101/machine.xml b/devices/pcx86/machine/5160/cga/256kb/win101/machine.xml
index 1c81fe4ad..03156abbe 100644
--- a/devices/pcx86/machine/5160/cga/256kb/win101/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/win101/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160) running Windows 1.01
diff --git a/devices/pcx86/machine/5160/cga/256kb/win101/softkbd/machine.xml b/devices/pcx86/machine/5160/cga/256kb/win101/softkbd/machine.xml
index 2df481aa5..8995962ce 100644
--- a/devices/pcx86/machine/5160/cga/256kb/win101/softkbd/machine.xml
+++ b/devices/pcx86/machine/5160/cga/256kb/win101/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 256K, Windows 1.01
diff --git a/devices/pcx86/machine/5160/cga/512kb/win101/softkbd/machine.xml b/devices/pcx86/machine/5160/cga/512kb/win101/softkbd/machine.xml
index f6e94bc90..4a7133215 100644
--- a/devices/pcx86/machine/5160/cga/512kb/win101/softkbd/machine.xml
+++ b/devices/pcx86/machine/5160/cga/512kb/win101/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 512K, WIN101
diff --git a/devices/pcx86/machine/5160/cga/640kb/debugger/machine.xml b/devices/pcx86/machine/5160/cga/640kb/debugger/machine.xml
index 1eae57dbf..a88f88d6f 100644
--- a/devices/pcx86/machine/5160/cga/640kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/cga/640kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/640kb/machine.xml b/devices/pcx86/machine/5160/cga/640kb/machine.xml
index 010786e63..b160e7aff 100644
--- a/devices/pcx86/machine/5160/cga/640kb/machine.xml
+++ b/devices/pcx86/machine/5160/cga/640kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/cga/640kb/softkbd/machine.xml b/devices/pcx86/machine/5160/cga/640kb/softkbd/machine.xml
index b0c60e9c5..2bff799a2 100644
--- a/devices/pcx86/machine/5160/cga/640kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5160/cga/640kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/ega/256kb/debugger/machine.xml b/devices/pcx86/machine/5160/ega/256kb/debugger/machine.xml
index 06d13189d..181ba23df 100644
--- a/devices/pcx86/machine/5160/ega/256kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/ega/256kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk
diff --git a/devices/pcx86/machine/5160/ega/256kb/machine.xml b/devices/pcx86/machine/5160/ega/256kb/machine.xml
index f6c01ab39..d78273d6a 100644
--- a/devices/pcx86/machine/5160/ega/256kb/machine.xml
+++ b/devices/pcx86/machine/5160/ega/256kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk
diff --git a/devices/pcx86/machine/5160/ega/640kb/array/machine.xml b/devices/pcx86/machine/5160/ega/640kb/array/machine.xml
index 74f9faf95..f43d0f011 100644
--- a/devices/pcx86/machine/5160/ega/640kb/array/machine.xml
+++ b/devices/pcx86/machine/5160/ega/640kb/array/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk
diff --git a/devices/pcx86/machine/5160/ega/640kb/debugger/machine.xml b/devices/pcx86/machine/5160/ega/640kb/debugger/machine.xml
index 35a3045de..6fcebff09 100644
--- a/devices/pcx86/machine/5160/ega/640kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/ega/640kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk
diff --git a/devices/pcx86/machine/5160/ega/640kb/machine.xml b/devices/pcx86/machine/5160/ega/640kb/machine.xml
index 86143fcb5..70ad55f87 100644
--- a/devices/pcx86/machine/5160/ega/640kb/machine.xml
+++ b/devices/pcx86/machine/5160/ega/640kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk
diff --git a/devices/pcx86/machine/5160/mda/256kb/debugger/machine.xml b/devices/pcx86/machine/5160/mda/256kb/debugger/machine.xml
index 3218c53c1..2d6aecc5a 100644
--- a/devices/pcx86/machine/5160/mda/256kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/mda/256kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/mda/256kb/fake188/debugger/machine.xml b/devices/pcx86/machine/5160/mda/256kb/fake188/debugger/machine.xml
index fa6e17a08..dc2a1a544 100644
--- a/devices/pcx86/machine/5160/mda/256kb/fake188/debugger/machine.xml
+++ b/devices/pcx86/machine/5160/mda/256kb/fake188/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/mda/256kb/fake188/machine.xml b/devices/pcx86/machine/5160/mda/256kb/fake188/machine.xml
index ced7579fb..6bbcfaba0 100644
--- a/devices/pcx86/machine/5160/mda/256kb/fake188/machine.xml
+++ b/devices/pcx86/machine/5160/mda/256kb/fake188/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/mda/256kb/machine.xml b/devices/pcx86/machine/5160/mda/256kb/machine.xml
index 3cf069595..65af53084 100644
--- a/devices/pcx86/machine/5160/mda/256kb/machine.xml
+++ b/devices/pcx86/machine/5160/mda/256kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive
diff --git a/devices/pcx86/machine/5160/mda/64kb/softkbd/machine.xml b/devices/pcx86/machine/5160/mda/64kb/softkbd/machine.xml
index 28eac6f81..0a31996da 100644
--- a/devices/pcx86/machine/5160/mda/64kb/softkbd/machine.xml
+++ b/devices/pcx86/machine/5160/mda/64kb/softkbd/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC XT (Model 5160), MDA, 64K, 10Mb Drive
diff --git a/devices/pcx86/machine/5170/cga/640kb/rev3/debugger/machine.xml b/devices/pcx86/machine/5170/cga/640kb/rev3/debugger/machine.xml
index 346cbcc87..fc86f49dd 100644
--- a/devices/pcx86/machine/5170/cga/640kb/rev3/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/cga/640kb/rev3/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display
diff --git a/devices/pcx86/machine/5170/cga/640kb/rev3/machine.xml b/devices/pcx86/machine/5170/cga/640kb/rev3/machine.xml
index 3512e022c..2b453eced 100644
--- a/devices/pcx86/machine/5170/cga/640kb/rev3/machine.xml
+++ b/devices/pcx86/machine/5170/cga/640kb/rev3/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display
diff --git a/devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/machine.xml b/devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/machine.xml
index 593eae58d..72b8d347c 100644
--- a/devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/ega/1152kb/rev1/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/1152kb/rev1/machine.xml b/devices/pcx86/machine/5170/ega/1152kb/rev1/machine.xml
index 56aaba70c..4b4d11ee5 100644
--- a/devices/pcx86/machine/5170/ega/1152kb/rev1/machine.xml
+++ b/devices/pcx86/machine/5170/ega/1152kb/rev1/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml b/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml
index d2828f172..eeb634ff9 100644
--- a/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml
+++ b/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/machine.xml b/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/machine.xml
index d61abe8c9..13aaa1f16 100644
--- a/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/ega/1152kb/rev3/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/1152kb/rev3/machine.xml b/devices/pcx86/machine/5170/ega/1152kb/rev3/machine.xml
index 09e44e56a..cbd73a9f5 100644
--- a/devices/pcx86/machine/5170/ega/1152kb/rev3/machine.xml
+++ b/devices/pcx86/machine/5170/ega/1152kb/rev3/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml b/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml
index b8c3c903c..f2a2c8aa5 100644
--- a/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml
+++ b/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/machine.xml b/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/machine.xml
index 3912e8435..3e1e85ee2 100644
--- a/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/ega/2048kb/rev3/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/2048kb/rev3/machine.xml b/devices/pcx86/machine/5170/ega/2048kb/rev3/machine.xml
index 52747c040..570158821 100644
--- a/devices/pcx86/machine/5170/ega/2048kb/rev3/machine.xml
+++ b/devices/pcx86/machine/5170/ega/2048kb/rev3/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/5170/ega/640kb/rev1/debugger/machine.xml b/devices/pcx86/machine/5170/ega/640kb/rev1/debugger/machine.xml
index b84503845..f613f6982 100644
--- a/devices/pcx86/machine/5170/ega/640kb/rev1/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/ega/640kb/rev1/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT, 128K EGA, 640Kb RAM
diff --git a/devices/pcx86/machine/5170/ega/640kb/rev1/machine.xml b/devices/pcx86/machine/5170/ega/640kb/rev1/machine.xml
index 5045d1b12..a30b209d7 100644
--- a/devices/pcx86/machine/5170/ega/640kb/rev1/machine.xml
+++ b/devices/pcx86/machine/5170/ega/640kb/rev1/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT, 128K EGA, 640Kb RAM
diff --git a/devices/pcx86/machine/5170/mda/640kb/rev3/debugger/machine.xml b/devices/pcx86/machine/5170/mda/640kb/rev3/debugger/machine.xml
index bd2b7c435..323e22c92 100644
--- a/devices/pcx86/machine/5170/mda/640kb/rev3/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/mda/640kb/rev3/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display
diff --git a/devices/pcx86/machine/5170/mda/640kb/rev3/machine.xml b/devices/pcx86/machine/5170/mda/640kb/rev3/machine.xml
index ae825679a..e6271266e 100644
--- a/devices/pcx86/machine/5170/mda/640kb/rev3/machine.xml
+++ b/devices/pcx86/machine/5170/mda/640kb/rev3/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display
diff --git a/devices/pcx86/machine/5170/vga/2048kb/debugger/machine.xml b/devices/pcx86/machine/5170/vga/2048kb/debugger/machine.xml
index 3511eab9c..7574e54a5 100644
--- a/devices/pcx86/machine/5170/vga/2048kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/vga/2048kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display
diff --git a/devices/pcx86/machine/5170/vga/2048kb/machine.xml b/devices/pcx86/machine/5170/vga/2048kb/machine.xml
index 642760628..cac5c9422 100644
--- a/devices/pcx86/machine/5170/vga/2048kb/machine.xml
+++ b/devices/pcx86/machine/5170/vga/2048kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display
diff --git a/devices/pcx86/machine/5170/vga/4096kb/debugger/machine.xml b/devices/pcx86/machine/5170/vga/4096kb/debugger/machine.xml
index 1cb132320..12a02ec05 100644
--- a/devices/pcx86/machine/5170/vga/4096kb/debugger/machine.xml
+++ b/devices/pcx86/machine/5170/vga/4096kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz, 4Mb, 20Mb Hard Disk) with VGA Display
diff --git a/devices/pcx86/machine/5170/vga/4096kb/machine.xml b/devices/pcx86/machine/5170/vga/4096kb/machine.xml
index c345ba0b7..5dc5d8479 100644
--- a/devices/pcx86/machine/5170/vga/4096kb/machine.xml
+++ b/devices/pcx86/machine/5170/vga/4096kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/att/6300/cga/640kb/debugger/machine.xml b/devices/pcx86/machine/att/6300/cga/640kb/debugger/machine.xml
index e7efd5838..8714d0f63 100644
--- a/devices/pcx86/machine/att/6300/cga/640kb/debugger/machine.xml
+++ b/devices/pcx86/machine/att/6300/cga/640kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
AT&T Personal Computer 6300 with Color Display
diff --git a/devices/pcx86/machine/att/6300/cga/640kb/machine.xml b/devices/pcx86/machine/att/6300/cga/640kb/machine.xml
index fa02329fe..bb96b8362 100644
--- a/devices/pcx86/machine/att/6300/cga/640kb/machine.xml
+++ b/devices/pcx86/machine/att/6300/cga/640kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
AT&T Personal Computer 6300 with Color Display
diff --git a/devices/pcx86/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml b/devices/pcx86/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml
index a4ef82b01..d09ff54ee 100644
--- a/devices/pcx86/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml
+++ b/devices/pcx86/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Columbia Data Products MPC 1600 with Color Display
diff --git a/devices/pcx86/machine/cdp/mpc1600/cga/640kb/machine.xml b/devices/pcx86/machine/cdp/mpc1600/cga/640kb/machine.xml
index 978f8861e..6a8a11947 100644
--- a/devices/pcx86/machine/cdp/mpc1600/cga/640kb/machine.xml
+++ b/devices/pcx86/machine/cdp/mpc1600/cga/640kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Columbia Data Products MPC 1600 with Color Display
diff --git a/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml b/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml
index f230e6f86..196769624 100644
--- a/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA
diff --git a/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/machine.xml b/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/machine.xml
index 7d90ef7b2..74f11b4d5 100644
--- a/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/ega/2048kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA
diff --git a/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml b/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml
index 52dbe0a10..4a3c95bcc 100644
--- a/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA
diff --git a/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/machine.xml b/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/machine.xml
index 0ce247fec..e27eda07a 100644
--- a/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/ega/4096kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA
diff --git a/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml b/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml
index d44d1ff2a..5dbd3ac43 100644
--- a/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml b/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml
index 08b9a702c..7c6ade233 100644
--- a/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml b/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml
index d79962dec..0202ef88a 100644
--- a/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/machine.xml b/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/machine.xml
index f1c0b3f50..26f59b946 100644
--- a/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/vga/2048kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml b/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml
index 123196ca1..df0897e63 100644
--- a/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/machine.xml b/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/machine.xml
index 9dcc82605..8ae0b1bae 100644
--- a/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/machine.xml
+++ b/devices/pcx86/machine/compaq/deskpro386/vga/4096kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk
diff --git a/devices/pcx86/machine/custom/machine.xml b/devices/pcx86/machine/custom/machine.xml
index 4cec9918f..067ca39d6 100644
--- a/devices/pcx86/machine/custom/machine.xml
+++ b/devices/pcx86/machine/custom/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150) with Monochrome Display
diff --git a/devices/pcx86/machine/zenith/z150/cga/640kb/debugger/machine.xml b/devices/pcx86/machine/zenith/z150/cga/640kb/debugger/machine.xml
index 8a2a2f2ee..d0e2424ae 100644
--- a/devices/pcx86/machine/zenith/z150/cga/640kb/debugger/machine.xml
+++ b/devices/pcx86/machine/zenith/z150/cga/640kb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Zenith Z-150 with Color Display
diff --git a/devices/pcx86/machine/zenith/z150/cga/640kb/machine.xml b/devices/pcx86/machine/zenith/z150/cga/640kb/machine.xml
index 853bf2598..9c1986aba 100644
--- a/devices/pcx86/machine/zenith/z150/cga/640kb/machine.xml
+++ b/devices/pcx86/machine/zenith/z150/cga/640kb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
Zenith Z-150 with Color Display
diff --git a/devices/pdp11/machine/1120/basic/debugger/machine.xml b/devices/pdp11/machine/1120/basic/debugger/machine.xml
index f1b7d4f17..25f8bc8a1 100644
--- a/devices/pdp11/machine/1120/basic/debugger/machine.xml
+++ b/devices/pdp11/machine/1120/basic/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20: 16Kb, PDP-11 BASIC, Debugger
diff --git a/devices/pdp11/machine/1120/basic/machine.xml b/devices/pdp11/machine/1120/basic/machine.xml
index d05bc7b74..7b0b03153 100644
--- a/devices/pdp11/machine/1120/basic/machine.xml
+++ b/devices/pdp11/machine/1120/basic/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20: 16Kb, PDP-11 BASIC
diff --git a/devices/pdp11/machine/1120/bootstrap/debugger/machine.xml b/devices/pdp11/machine/1120/bootstrap/debugger/machine.xml
index 1d939cad8..c4b231c48 100644
--- a/devices/pdp11/machine/1120/bootstrap/debugger/machine.xml
+++ b/devices/pdp11/machine/1120/bootstrap/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20: 16Kb, Bootstrap Loader, Debugger
diff --git a/devices/pdp11/machine/1120/bootstrap/machine.xml b/devices/pdp11/machine/1120/bootstrap/machine.xml
index a79f66a8a..b954bf933 100644
--- a/devices/pdp11/machine/1120/bootstrap/machine.xml
+++ b/devices/pdp11/machine/1120/bootstrap/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20: 16Kb, Bootstrap Loader
diff --git a/devices/pdp11/machine/1120/monitor/debugger/machine.xml b/devices/pdp11/machine/1120/monitor/debugger/machine.xml
index d068b5c2d..29bd126ba 100644
--- a/devices/pdp11/machine/1120/monitor/debugger/machine.xml
+++ b/devices/pdp11/machine/1120/monitor/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20 Boot Monitor with 56Kb and Debugger
diff --git a/devices/pdp11/machine/1120/monitor/machine.xml b/devices/pdp11/machine/1120/monitor/machine.xml
index 4944e7c59..f7ff0349b 100644
--- a/devices/pdp11/machine/1120/monitor/machine.xml
+++ b/devices/pdp11/machine/1120/monitor/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20 Boot Monitor with 56Kb
diff --git a/devices/pdp11/machine/1120/panel/debugger/machine.xml b/devices/pdp11/machine/1120/panel/debugger/machine.xml
index d738792a5..f13fcabca 100644
--- a/devices/pdp11/machine/1120/panel/debugger/machine.xml
+++ b/devices/pdp11/machine/1120/panel/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20 with Front Panel and Debugger
diff --git a/devices/pdp11/machine/1120/panel/debugger/test14/machine.xml b/devices/pdp11/machine/1120/panel/debugger/test14/machine.xml
index 7daec2f41..c404f2e9b 100644
--- a/devices/pdp11/machine/1120/panel/debugger/test14/machine.xml
+++ b/devices/pdp11/machine/1120/panel/debugger/test14/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20 with Front Panel and TEST 14
diff --git a/devices/pdp11/machine/1120/panel/machine.xml b/devices/pdp11/machine/1120/panel/machine.xml
index d3de6e1ec..35502d2c8 100644
--- a/devices/pdp11/machine/1120/panel/machine.xml
+++ b/devices/pdp11/machine/1120/panel/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/20 with Front Panel
diff --git a/devices/pdp11/machine/1145/panel/debugger/machine.xml b/devices/pdp11/machine/1145/panel/debugger/machine.xml
index 208235d3b..db7929338 100644
--- a/devices/pdp11/machine/1145/panel/debugger/machine.xml
+++ b/devices/pdp11/machine/1145/panel/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb, Front Panel and Debugger
diff --git a/devices/pdp11/machine/1145/panel/machine.xml b/devices/pdp11/machine/1145/panel/machine.xml
index f8bf21dba..98f29b855 100644
--- a/devices/pdp11/machine/1145/panel/machine.xml
+++ b/devices/pdp11/machine/1145/panel/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1145/vt100/README.md b/devices/pdp11/machine/1145/vt100/README.md
index 2c5ee5413..fbbd64de5 100644
--- a/devices/pdp11/machine/1145/vt100/README.md
+++ b/devices/pdp11/machine/1145/vt100/README.md
@@ -5,16 +5,16 @@ permalink: /devices/pdp11/machine/1145/vt100/
machines:
- id: test1145
type: pdp11
- config: /devices/pdp11/machine/1145/vt100/machine-left.xml
+ config: /devices/pdp11/machine/1145/vt100/machine-right.xml
connection: dl11->vt100.serialPort
- id: vt100
type: pc8080
- config: /devices/pc8080/machine/vt100/machine-right.xml
+ config: /devices/pc8080/machine/vt100/machine-left.xml
connection: serialPort->test1145.dl11
---
-{% include machine.html id="test1145" %}
-
{% include machine.html id="vt100" %}
+{% include machine.html id="test1145" %}
+
This PDP-11/45 is also available with our built-in [Debugger](debugger/).
diff --git a/devices/pdp11/machine/1145/vt100/debugger/README.md b/devices/pdp11/machine/1145/vt100/debugger/README.md
index 3e9808504..10561fc41 100644
--- a/devices/pdp11/machine/1145/vt100/debugger/README.md
+++ b/devices/pdp11/machine/1145/vt100/debugger/README.md
@@ -6,15 +6,15 @@ machines:
- id: test1145
type: pdp11
debugger: true
- config: /devices/pdp11/machine/1145/vt100/debugger/machine-left.xml
+ config: /devices/pdp11/machine/1145/vt100/debugger/machine-right.xml
connection: dl11->vt100.serialPort
- id: vt100
type: pc8080
debugger: true
- config: /devices/pc8080/machine/vt100/debugger/machine-right.xml
+ config: /devices/pc8080/machine/vt100/debugger/machine-left.xml
connection: serialPort->test1145.dl11
---
-{% include machine.html id="test1145" %}
-
{% include machine.html id="vt100" %}
+
+{% include machine.html id="test1145" %}
diff --git a/devices/pdp11/machine/1145/vt100/debugger/machine-left.xml b/devices/pdp11/machine/1145/vt100/debugger/machine-left.xml
index e48ca6d8b..74193c099 100644
--- a/devices/pdp11/machine/1145/vt100/debugger/machine-left.xml
+++ b/devices/pdp11/machine/1145/vt100/debugger/machine-left.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb, Front Panel, and Debugger
diff --git a/devices/pdp11/machine/1145/vt100/debugger/machine-right.xml b/devices/pdp11/machine/1145/vt100/debugger/machine-right.xml
new file mode 100644
index 000000000..db9fabbd4
--- /dev/null
+++ b/devices/pdp11/machine/1145/vt100/debugger/machine-right.xml
@@ -0,0 +1,15 @@
+
+
+
+ PDP-11/45 with 256Kb, Front Panel, and Debugger
+
+
+
+
+
+
+
+
+
+
+
diff --git a/devices/pdp11/machine/1145/vt100/debugger/machine.xml b/devices/pdp11/machine/1145/vt100/debugger/machine.xml
index fbc1aff9f..b4250183e 100644
--- a/devices/pdp11/machine/1145/vt100/debugger/machine.xml
+++ b/devices/pdp11/machine/1145/vt100/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb, Front Panel, and Debugger
diff --git a/devices/pdp11/machine/1145/vt100/machine-left.xml b/devices/pdp11/machine/1145/vt100/machine-left.xml
index 0147e4fc8..da98fe5c1 100644
--- a/devices/pdp11/machine/1145/vt100/machine-left.xml
+++ b/devices/pdp11/machine/1145/vt100/machine-left.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1145/vt100/machine-right.xml b/devices/pdp11/machine/1145/vt100/machine-right.xml
new file mode 100644
index 000000000..8077b19f5
--- /dev/null
+++ b/devices/pdp11/machine/1145/vt100/machine-right.xml
@@ -0,0 +1,14 @@
+
+
+
+ PDP-11/45 with 256Kb and Front Panel
+
+
+
+
+
+
+
+
+
+
diff --git a/devices/pdp11/machine/1145/vt100/machine.xml b/devices/pdp11/machine/1145/vt100/machine.xml
index 35ab7279f..7a8374164 100644
--- a/devices/pdp11/machine/1145/vt100/machine.xml
+++ b/devices/pdp11/machine/1145/vt100/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/45 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1170/4mb/debugger/machine.xml b/devices/pdp11/machine/1170/4mb/debugger/machine.xml
index ca829680c..e9c6f604b 100644
--- a/devices/pdp11/machine/1170/4mb/debugger/machine.xml
+++ b/devices/pdp11/machine/1170/4mb/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 4Mb, Front Panel and Debugger
diff --git a/devices/pdp11/machine/1170/4mb/machine.xml b/devices/pdp11/machine/1170/4mb/machine.xml
index 6b84c7bad..7fa3d6ca8 100644
--- a/devices/pdp11/machine/1170/4mb/machine.xml
+++ b/devices/pdp11/machine/1170/4mb/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 4Mb and Front Panel
diff --git a/devices/pdp11/machine/1170/monitor/debugger/machine.xml b/devices/pdp11/machine/1170/monitor/debugger/machine.xml
index 278336207..b89490387 100644
--- a/devices/pdp11/machine/1170/monitor/debugger/machine.xml
+++ b/devices/pdp11/machine/1170/monitor/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 256Kb, Boot Monitor, and Debugger
diff --git a/devices/pdp11/machine/1170/monitor/machine.xml b/devices/pdp11/machine/1170/monitor/machine.xml
index 5bd296045..11af04322 100644
--- a/devices/pdp11/machine/1170/monitor/machine.xml
+++ b/devices/pdp11/machine/1170/monitor/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 256Kb and Boot Monitor
diff --git a/devices/pdp11/machine/1170/panel/debugger/cpuexer/machine.xml b/devices/pdp11/machine/1170/panel/debugger/cpuexer/machine.xml
index eb1b9794c..16dea303b 100644
--- a/devices/pdp11/machine/1170/panel/debugger/cpuexer/machine.xml
+++ b/devices/pdp11/machine/1170/panel/debugger/cpuexer/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 256Kb running CPU Exerciser
diff --git a/devices/pdp11/machine/1170/panel/debugger/machine.xml b/devices/pdp11/machine/1170/panel/debugger/machine.xml
index f874ac202..7d6709620 100644
--- a/devices/pdp11/machine/1170/panel/debugger/machine.xml
+++ b/devices/pdp11/machine/1170/panel/debugger/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 256Kb, Front Panel and Debugger
diff --git a/devices/pdp11/machine/1170/panel/machine.xml b/devices/pdp11/machine/1170/panel/machine.xml
index e6427ce7c..bba2dd9cc 100644
--- a/devices/pdp11/machine/1170/panel/machine.xml
+++ b/devices/pdp11/machine/1170/panel/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
PDP-11/70 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1170/vt100/debugger/machine-left.xml b/devices/pdp11/machine/1170/vt100/debugger/machine-left.xml
index 51259b226..543e1117f 100644
--- a/devices/pdp11/machine/1170/vt100/debugger/machine-left.xml
+++ b/devices/pdp11/machine/1170/vt100/debugger/machine-left.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb, Front Panel, and Debugger
diff --git a/devices/pdp11/machine/1170/vt100/debugger/machine-right.xml b/devices/pdp11/machine/1170/vt100/debugger/machine-right.xml
index 23a804818..190bd5301 100644
--- a/devices/pdp11/machine/1170/vt100/debugger/machine-right.xml
+++ b/devices/pdp11/machine/1170/vt100/debugger/machine-right.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb, Front Panel, and Debugger
diff --git a/devices/pdp11/machine/1170/vt100/debugger/machine.xml b/devices/pdp11/machine/1170/vt100/debugger/machine.xml
index d62902687..433f7f5ed 100644
--- a/devices/pdp11/machine/1170/vt100/debugger/machine.xml
+++ b/devices/pdp11/machine/1170/vt100/debugger/machine.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb, Front Panel, and Debugger
diff --git a/devices/pdp11/machine/1170/vt100/machine-left.xml b/devices/pdp11/machine/1170/vt100/machine-left.xml
index 8f6da6163..c912ae466 100644
--- a/devices/pdp11/machine/1170/vt100/machine-left.xml
+++ b/devices/pdp11/machine/1170/vt100/machine-left.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1170/vt100/machine-right.xml b/devices/pdp11/machine/1170/vt100/machine-right.xml
index 42ea12ed7..5e84e0123 100644
--- a/devices/pdp11/machine/1170/vt100/machine-right.xml
+++ b/devices/pdp11/machine/1170/vt100/machine-right.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb and Front Panel
diff --git a/devices/pdp11/machine/1170/vt100/machine.xml b/devices/pdp11/machine/1170/vt100/machine.xml
index e45884569..2afebf8c8 100644
--- a/devices/pdp11/machine/1170/vt100/machine.xml
+++ b/devices/pdp11/machine/1170/vt100/machine.xml
@@ -1,5 +1,5 @@
-
+
PDP-11/70 with 256Kb and Front Panel
diff --git a/disks/pcx86/apps/ibm/topview/1.01/manifest.xml b/disks/pcx86/apps/ibm/topview/1.01/manifest.xml
index 1ca0d11b8..1f17e6277 100644
--- a/disks/pcx86/apps/ibm/topview/1.01/manifest.xml
+++ b/disks/pcx86/apps/ibm/topview/1.01/manifest.xml
@@ -1,5 +1,5 @@
-
+
TopView 1.01
diff --git a/disks/pcx86/apps/lotus/123/1.0a/manifest.xml b/disks/pcx86/apps/lotus/123/1.0a/manifest.xml
index 54fd9daf7..a4a11e74b 100644
--- a/disks/pcx86/apps/lotus/123/1.0a/manifest.xml
+++ b/disks/pcx86/apps/lotus/123/1.0a/manifest.xml
@@ -1,5 +1,5 @@
-
+
1-2-3
1.0a
diff --git a/disks/pcx86/apps/micropro/wordstar/3.30/manifest.xml b/disks/pcx86/apps/micropro/wordstar/3.30/manifest.xml
index f52f59bec..be5268477 100644
--- a/disks/pcx86/apps/micropro/wordstar/3.30/manifest.xml
+++ b/disks/pcx86/apps/micropro/wordstar/3.30/manifest.xml
@@ -1,5 +1,5 @@
-
+
WordStar 3.30
diff --git a/disks/pcx86/apps/micropro/wordstar/4.00/manifest.xml b/disks/pcx86/apps/micropro/wordstar/4.00/manifest.xml
index 0a1aeeeed..450e2c397 100644
--- a/disks/pcx86/apps/micropro/wordstar/4.00/manifest.xml
+++ b/disks/pcx86/apps/micropro/wordstar/4.00/manifest.xml
@@ -1,5 +1,5 @@
-
+
WordStar 4.00
diff --git a/disks/pcx86/apps/microsoft/chart/2.02/manifest.xml b/disks/pcx86/apps/microsoft/chart/2.02/manifest.xml
index 5ae714f4b..c8a82b5bd 100644
--- a/disks/pcx86/apps/microsoft/chart/2.02/manifest.xml
+++ b/disks/pcx86/apps/microsoft/chart/2.02/manifest.xml
@@ -1,5 +1,5 @@
-
+
Microsoft Chart
2.02
diff --git a/disks/pcx86/apps/microsoft/winword/2.0c/manifest.xml b/disks/pcx86/apps/microsoft/winword/2.0c/manifest.xml
index 9a1010aff..b00823eae 100644
--- a/disks/pcx86/apps/microsoft/winword/2.0c/manifest.xml
+++ b/disks/pcx86/apps/microsoft/winword/2.0c/manifest.xml
@@ -1,5 +1,5 @@
-
+
Word for Windows
2.0c
diff --git a/disks/pcx86/apps/microsoft/word/3.0/manifest.xml b/disks/pcx86/apps/microsoft/word/3.0/manifest.xml
index d6fc401af..0494f5bd0 100644
--- a/disks/pcx86/apps/microsoft/word/3.0/manifest.xml
+++ b/disks/pcx86/apps/microsoft/word/3.0/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS Word
3.0
diff --git a/disks/pcx86/apps/microsoft/word/3.1/manifest.xml b/disks/pcx86/apps/microsoft/word/3.1/manifest.xml
index 696e028b5..7b3e7ac9b 100644
--- a/disks/pcx86/apps/microsoft/word/3.1/manifest.xml
+++ b/disks/pcx86/apps/microsoft/word/3.1/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS Word
3.1
diff --git a/disks/pcx86/apps/microsoft/word/5.0/manifest.xml b/disks/pcx86/apps/microsoft/word/5.0/manifest.xml
index b5241849f..5acf8d752 100644
--- a/disks/pcx86/apps/microsoft/word/5.0/manifest.xml
+++ b/disks/pcx86/apps/microsoft/word/5.0/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS Word
5.0
diff --git a/disks/pcx86/apps/sunnyhill/omniview/4.30/manifest.xml b/disks/pcx86/apps/sunnyhill/omniview/4.30/manifest.xml
index 26c1b8900..dac21cd79 100644
--- a/disks/pcx86/apps/sunnyhill/omniview/4.30/manifest.xml
+++ b/disks/pcx86/apps/sunnyhill/omniview/4.30/manifest.xml
@@ -1,5 +1,5 @@
-
+
Omniview 386
4.30
diff --git a/disks/pcx86/cpm/1.1b/machine.xml b/disks/pcx86/cpm/1.1b/machine.xml
index a374abe2d..f03701b23 100644
--- a/disks/pcx86/cpm/1.1b/machine.xml
+++ b/disks/pcx86/cpm/1.1b/machine.xml
@@ -1,6 +1,6 @@
-
-
+
+
IBM PC (Model 5150) running CP/M-86
diff --git a/disks/pcx86/cpm/1.1b/manifest.xml b/disks/pcx86/cpm/1.1b/manifest.xml
index a52bd86d4..79b43c19c 100644
--- a/disks/pcx86/cpm/1.1b/manifest.xml
+++ b/disks/pcx86/cpm/1.1b/manifest.xml
@@ -1,5 +1,5 @@
-
+
CP/M-86
1.1B
diff --git a/disks/pcx86/diags/ibm/manifest.xml b/disks/pcx86/diags/ibm/manifest.xml
index dffd63986..47946491a 100644
--- a/disks/pcx86/diags/ibm/manifest.xml
+++ b/disks/pcx86/diags/ibm/manifest.xml
@@ -1,5 +1,5 @@
-
+
IBM PC Diagnostics
Diagnostics
diff --git a/disks/pcx86/dos/compaq/1.11/manifest.xml b/disks/pcx86/dos/compaq/1.11/manifest.xml
index 5c0fb0ba9..ebb0e7ac4 100644
--- a/disks/pcx86/dos/compaq/1.11/manifest.xml
+++ b/disks/pcx86/dos/compaq/1.11/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
1.11
diff --git a/disks/pcx86/dos/compaq/1.12/manifest.xml b/disks/pcx86/dos/compaq/1.12/manifest.xml
index 1612a0c73..6276b2f58 100644
--- a/disks/pcx86/dos/compaq/1.12/manifest.xml
+++ b/disks/pcx86/dos/compaq/1.12/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
1.12
diff --git a/disks/pcx86/dos/compaq/2.12/manifest.xml b/disks/pcx86/dos/compaq/2.12/manifest.xml
index 08cbe7952..b20140082 100644
--- a/disks/pcx86/dos/compaq/2.12/manifest.xml
+++ b/disks/pcx86/dos/compaq/2.12/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
2.12
diff --git a/disks/pcx86/dos/compaq/3.00/manifest.xml b/disks/pcx86/dos/compaq/3.00/manifest.xml
index 2c00450be..149cdb76b 100644
--- a/disks/pcx86/dos/compaq/3.00/manifest.xml
+++ b/disks/pcx86/dos/compaq/3.00/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
3.00
diff --git a/disks/pcx86/dos/compaq/3.10/manifest.xml b/disks/pcx86/dos/compaq/3.10/manifest.xml
index ee6932989..f54c279cc 100644
--- a/disks/pcx86/dos/compaq/3.10/manifest.xml
+++ b/disks/pcx86/dos/compaq/3.10/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
3.10
diff --git a/disks/pcx86/dos/compaq/3.31/manifest.xml b/disks/pcx86/dos/compaq/3.31/manifest.xml
index 64700a82c..6ef8dec88 100644
--- a/disks/pcx86/dos/compaq/3.31/manifest.xml
+++ b/disks/pcx86/dos/compaq/3.31/manifest.xml
@@ -1,5 +1,5 @@
-
+
MS-DOS
3.31
diff --git a/disks/pcx86/dos/ibm/1.00/manifest.xml b/disks/pcx86/dos/ibm/1.00/manifest.xml
index a09f83880..3e55a6073 100644
--- a/disks/pcx86/dos/ibm/1.00/manifest.xml
+++ b/disks/pcx86/dos/ibm/1.00/manifest.xml
@@ -1,5 +1,5 @@
-
+
PC-DOS
1.00
diff --git a/disks/pcx86/dos/ibm/1.10/manifest.xml b/disks/pcx86/dos/ibm/1.10/manifest.xml
index 73bab5b76..aecae2091 100644
--- a/disks/pcx86/dos/ibm/1.10/manifest.xml
+++ b/disks/pcx86/dos/ibm/1.10/manifest.xml
@@ -1,5 +1,5 @@
-
+