layout | title | date | permalink | machines | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
post |
Turbo Pascal vs. QuickPascal |
2018-03-22 03:00:00 -0700 |
/blog/2018/03/22/ |
|
Below are side-by-side PCjs machines running Borland Turbo Pascal 5.00 and Microsoft QuickPascal 1.00. Make your browser window nice and wide, and then sit back and be mesmerized.
We reveal who the winner is below the fold.
{% include machine.html id="ibm5170-msdos320-1" %}
{% include machine.html id="ibm5170-msdos320-2" %}
PCjs, obviously. This demo shows off several PCjs improvements, including an easier way to layout side-by-side
machines, using new machine-left
and machine-right
classes.
There's also been some improvements to the autoType feature, making it easier to encode delays and specify special key sequences.
Here's an example of "injecting" Ctrl-F4, followed by a 1/10 second delay, followed by Alt-F:
autoType: $ctrl$f4$1$altf
Any of the keys listed in the PCx86 Keyboard's SOFTCODES table can be
injected by preceding them with a $
, such as:
$esc
$tab
(or \t)$enter
(or \r)
Modifier keys, such as:
$ctrl
$shift
$alt
are automatically released after a non-modifier key has been injected.
Delays from 1/10 to 9/10 of a second, specified with $1
through $9
, set the default delay between all
subsequent keys, whereas delays of one second or more (eg, $10
, $20
, etc) set a one-time delay.
For software that needs more than just injected keys, sophisticated scripts are possible. Here's the "startMouse" script for IBM's TopView 1.01:
wait Keyboard DOS;
type Keyboard "$date\r$time\r";
wait Keyboard;
sleep 1000;
select FDC listDrives "A:";
select FDC listDisks "MS Mouse 5.00 (SYSTEM)";
loadDisk FDC;
wait FDC;
type Keyboard "MOUSE\r";
sleep 7000;
type Keyboard "B:\rSETUP\r$50.3\r$20n\r$20y\r$20\r$20\r$20.1\r";
The above script automatically "inserts" the Microsoft Mouse 5.00 diskette into drive A:, loads the mouse driver, and then configures TopView for serial mouse support.
@jeffpar
Mar 22, 2018