PDA

View Full Version : Calling all DOS geeks and OLD computer wizards


brianZ
08-16-2001, 11:22 AM
Hi everyone,

Well, a brief overview of the computer system that I'm working on should give some insight to the nature of my problem:

CPU: none
Memory: 640 K
Drive(s): 2 5.25 Floppies
8 bit ISA slots for: Printer, rs-232, monitor, and floppy controller.

The question you probably have is "Why are you messing with that?". Answer: Because I have no choice. The computer controls a device called a micro-punch, which when it was made, had the software somehow dedicated to a ROM chip on the motherboard (At least that's what the company who made it tells me). So, rather than hold up the works by redesigning the system and writing the software (and still praying everything works with the punch itself), I decided to try some minor improvements. With two down, the only thing remaining is to try to replace the B drive with a 3.5 floppy. DOS runs off the A drive, so it usually dosen't get opened and closed. I'm worried about failure with the B drive because disks go in and out all the time (dust, etc). The problem is that when I tried to run a 3.5 floppy on there, it recognized it (led on, drive spins) but would not work. I know DOS 3.3 supports the 3.5 floppy, so I wonder if it might be the controller card, or do I need some sort of driver? Can anyone offer a suggestion (aside from blowing it up). Thanks gang.........brianZ

PostCode
08-16-2001, 11:28 AM
What type of CPU "would" be used in the system? If the board is 8-bit based, your biggest drive is 360K. Sure, it'll see a floppy drive at the other end, but it won't no jack about it or how to use it. No way around that. If it's 16-bit system, then you should have no problem attaching a 3 1/2 to the system. If the motherboard was designed to house a 8088 or 8086, there is simply nothing you can do to get a faster floppy in there. Hope this helps.

------------------
BiosCentral (http://www.bioscentral.com)
BiosCentral Forums (http://www.bioscentral.com/cgi-bin/UltraBoard/UltraBoard.cgi)

Rick
08-16-2001, 05:31 PM
DRIVEPARM is the config.sys device command your going to need to get that 3.5 drive working
Yes it will work with an 8088 If you have dos3.3 or better

driveparm
Defines parameters for block devices.

driveparm=[options]


Options:

/d:nnn is the physical drive number, in the range 0-255. 0=A:

/c says if the drive can detect when the door is open/closed.

/f:n is the drive type, in the range 0-9
0=160/180k or 320/360k
1=1.2M
2=720k (the default)
3=[not defined]
4=[not defined]
5=hard disk
6=tape
7=1.44M
8=R/W optical
9=2.88M

/h:nn is the number of heads, in the range 1-99.

/i says the disk is a 3.5-inch drive

/n is a non-removable disk

/s:nn is the number of sectors, in the range 1-99

/t:nn is hte number of tracks per side

------------------
To ERR is HUMAN
To REALLY screw things UP, YOU NEED a COMPUTER !

PostCode
08-16-2001, 05:50 PM
DOH. Yep. Forgot all about driveparm....it's been to damn long for me. hehe

------------------
BiosCentral (http://www.bioscentral.com)
BiosCentral Forums (http://www.bioscentral.com/cgi-bin/UltraBoard/UltraBoard.cgi)