So, a recap.
You need a Fat16 partition on your media, and Dos 5 (286 or older) or for other FAT partitions like Dos 6.22 (386 or better) or Dos 7/Windows XP or
98se, You can install your version of Sequencer+. This example uses the C: drive, and the folder "\voyetra". You cannot run SEQ+ from floppies. It must be on a "hard disk", or at worst, a Parallel Zip Drive mounted as a hard disk. Naturally, today, the IDE to SD card boards on aliexpress are the best. Prepare Your SD card by using the usual method when booting from the install floppy for Your DOS version, using FDISK. Keep the partition small - You do not need the primary active partition to be large. You can add another later for data and games..
The file "voyetra/seq.bat" file starts things. This is generated when you install Seq+, but you can just write Your own one.
Code:
echo off C: cd C:\VOYETRA call C:\VOYETRA\driver C:\VOYETRA\SpG %1 %2 %3 %4 %5 %6 %7 %8 %9 call C:\VOYETRA\driver /rem
from the arguments you append to the "seq.bat" command. So, you can set the ticks here if Your Seq+ is locking up on a Pentium, or not loading on a 286, or You need to set a screen type etc. The Manual will help you here.
You can see it will "call" the DRIVER.BAT during this script, once to start it, then after you QUIT, it will again call it with the "/rem" flag to unload it.
Code:
echo off if "%1" == "/rem" goto REMOVE if "%1" == "/REM" goto REMOVE C:\VOYETRA\VAPIVP11.COM /lpt:1 %1 %2 %3 goto OUT :REMOVE C:\VOYETRA\VAPIVP11.COM /rem :OUT
It calls the driver here: "C:\VOYETRA\VAPIVP11.COM /lpt:1 %1 %2 %3" - the driver is "VAPIVP11.COM" which you can have present in the /voyetra folder, with the
switch "/lpt:1" - this should work for everyone that has only 1 parallel port enabled in the bios.
So, to load any driver, you just change line 4 and 7 accordingly to name that driver, do this in EDIT or EDLIN in dos if You cannot run the installer.
You can use the installer to ONLY install a driver, and generate the driver.bat file for that specific driver if You have it.
It's best practice to make a .BAT in your root folder to call the SEQ.BAT including these switches:
Code:
cd voyetra seq.bat /SLOW /RES:1
i use for my 386sx and Yamaha C1. You can add all Your custom switches in this .BAT and have it run from Autoexec.bat to just boot right to SEQ+ like a
pro..
IF You are running a 386 or better, and load EMM386 (etc.) in your config.sys and autoexec.bat, You can prefix "LOADHI" or "LOADHIGH" (OS depending) to load
the driver into high memory and save ram. Experiement. It works, but DOS memory management like this is not simple, so that is up to You to fix.
IF You are running 4.09 or better, You can use the installer to install 2 interfaces. This can include a Parallel and a Soundblaster, or MPU401 device. In this
case, the DRIVER.BAT will have 2 loading lines, and 2 "/rem" lines in the correct order.

It shipped with an Athlon 1100, but i have put a 1400 in there. Cleaned the fan setup, and it's fine. DOS does cause the fan to run hard, i do not know why, and nobody else seems to have noticed this ever. I suspect there is no CPU management going on, so it runs full tilt the whole time in DOS - suits me fine, but it would be nice if the fan was dynamic, like in Linux and XP etc. I have kept a full set of drivers for both XP and 98se, should the need to go full-bloat appear at some stage.
Leave a comment: