Classic Computer Magazine Archive COMPUTE! ISSUE 9 / FEBRUARY 1981 / PAGE 126

Review

The PEDISK From CGRS Microtech

Dr. J. A. Dilts
Department of Chemistry
University of North Carolina at Greensboro,
Greensboro NC 27412

The addition of a disk to ones microcomputer system is a need that becomes evident after a short period of loading programs from cassette tape. Any attempt at even modest data handling amplifies this need. For the owners of the original 8K PET computer, this presents a problem in that Commodore's disk system is incompatable with the original ROM operating system. For those of us who purchased the early PETs, there is an alternative to updating the ROM operating system or selling our old PETs in order to add disk capability. The CGRS PEDISK goes beyond offering a high speed means of loading programs and saving data in that it also provides access to the S-100 buss. This offers expansion not only in terms of memory, but a host of other possibilities such as analogue to digital boards, modem boards, etc.

In the standard configuration the CGRS PEDISK system offers two free S-100 slots. It is possible to add another S-100 connector at additional cost. The 5.25 inch drive uses soft-sector diskettes. The format is the IBM 3740 standard. This provides 80K of storage per drive. A total of 4 drives can be handled by the S-100 disk controller board.

Although this system was originally designed to operate with the original PETs, it is now available for the newer 16 and 32K versions.

The Disk Operating System

The disk operating system provided by CGRS is partially in ROM, but is basically a RAM oriented DOS. Although there is an overhead with such an approach (about 2K of memory is taken up by the DOS), the advantage of having the DOS in RAM rather than ROM is that it is possible to make modifications, be they up-dates or correction of bugs.

The DOS is initialized by a SYS call to a boot starting in ROM at hex B000. The disk operating system is loaded into the top 2K of RAM and is subsequently protected.

Loading and saving programs is accomplished by preceeding the usual BASIC command with a "!", for example:

!LOAD"program name:0"

where 0 is the number of the disk drive. Unlike program names on tape, program names on disk are limited to 6 characters. Provision is made for renaming programs or data files. As with any disk system, duplicate programs are not allowed.

One of the most appealing features of the DOS lies in its file handling capabilities. Files may be opened as serial access or indexed types. In the first case, files are written and read from the first entry to the last. In the case of indexed files, any record may be written and/or read back in any order. Once a file has been opened for writing purposes, it may be reopened for reading and/or editing. This allows one to examine a file record by record and perform editing (rewriting) on a record by record basis. There are two reserved variables for checking on successful file write and on encountering the end of file. File closing is automatic with the command !CLOSE or when the system is initialized. Up to four disk files may be opened at one time and each maintains its own index counter through a common reserved variable. Commands normally used in dealing with tape files are proceeded by "!" in the case of disk files, i.e. !INPUT F$ Z$ where F$ is the string containing the file name.

The command !SYS transfers control to the disk monitor. Here commands can be entered as a single character without using the return key. In this mode keying in "H" will list the currently available single key commands. It should be noted that in this mode, any current BASIC program will remain intact and pressing "R" will return one to the BASIC operating mode.

Commands in the DOS monitor mode include DUMP which will cause a formatted dump of either memory or disk sectors, GO to execute a machine language program, KILL to delete a file from the disk, LOAD to load a program without execution, MEMORY, a command to examine and change locations in memory, PRINT the volume table of contents of the disk, RENTER the BASIC operating system, SAVE to save a BASIC or assembly language routine and UTILITY to access routines to compress disk files, copy disks, read or write a disk sector or initialize a diskette. All of these commands are actuated by typing in the first letter of the command.

In short, the DOS affords a very neat package especially with respect to data file manipulation. Documentation is adequate, especially if you have had some experience with other disk operating systems. As with any new system, some experimentation will be necessary for the user to become familiar with all the features of the system. Not all of the commands mentioned under the monitor will work from the BASIC control mode but this minor bug will doubtless be corrected in future editions of this program. This is a great advantage in a RAM oriented DOS. I found the software to be relatively free of BUGs.

Because of the 2K overhed in RAM, it would be advisable to have a minimum of 16K RAM for such a system. The potential user should also be aware that if a change in memory size occurs, an updated version of the operating system must be obtained.

In brief, the CGRS PEDISK offers in a neat package both disk capabilities and access to S-100 buss boards. This latter point has been most important in terms of applications of this reviewer.