Search Posts:

CBM SuperPET Tips (CBM S9000)

SHARE

Return to Threads

  CBM SuperPET Tips (CBM S9000) by Bill Degnan - 12/12/2008 22:20
The manuals supplied by Commodore are frustratingly incomplete and require a lot of head banging and experimenting to accomplish what should be simple tasks. The top of the klugey list is printing a program listing.

Here are some useful tips and tricks including a few things that are not found in the original manuals. I still recommend that you try to find and read a copy of the SuperPET manuals (pamplets) too.

1. In order to use the SuperPET in 6809 mode, you must have the OS boot disk titled "SuperPet WCS" present in drive 1 (left drive) of an 8050 (or 8250) dual-diskette drive. Set the side dip switches to 6809 and R/W. If you do not have this disk or a 8050/8250 drive, you'll have to trouble doing much more than staring at the initial boot menu. This menu lists the programming language options (Pascal, COBOL, FORTRAN, BASIC, etc.) BUT these components are not included in a system ROM, they exist instead on the boot disk.


The directory listing from a pair of SuperPET disks when viewed from 8032 BASIC. Note the failure of BASIC to correctly print the SEQ filenames created with the SuperPET in 6809 mode using Pascal (right/drive 0). The programming languages available to the SuperPET user are listed in drive 1/left drive. I am not sure what those SEQ files are, probably test programs I saved to the disk (it's a working copy).


2. After loading a language option from the 6809 boot screen, execute the command help to recall a listing of the available command mode commands.

For example:

g filename - to load a file
p filename - to save a file
di - directory
di disk8/1 - directory of drive 1
*d - new / clear workspace
d - delete current line

...of course, how logical! (??)

3. Here is a list of the quick keys when in edit mode. (Shift+ number pad keys):

SHIFT+0 = PF0 = new line
PF1 = Not Used
PF2 = Delete a line
PF3 = Move ahead a line (cursor down)
PF4 = Move current LINE down one in window
PF5 = Enter Command Mode (exit)
PF6 = Back one line (cursor up)
PF7 = Move current line up one in window
PF8 = Screen Mode (enter editor mode from command mode)
PF9 = Back one screen (page up)
PF. = Ahead one screen (page down)

So you ask, why does the manual not just say shift+8 instead of "PF8"?

Answer: Because the SuperPET was used as a terminal to connect with (by default) the VM/SP environment on an IBM 370 or IBM Series 1 . "PF keys" are part of the IBM nomenclature. A 3270 terminal has function keys labeled PF1, PF2, PF3, etc. The SuperPET was more of a smart workstation used to upload programs to mini or mainframe computers, and not so much a stand-alone micro.

Once a person was done coding in their programming and it passed syntax validation, the programmer would upload the code for production testing. The VM interface or TSO/JCL interfaces had PF key menu screens.


4. Here is one that's not in the manual:

From the command mode, here are the commands for printing a code listing (assuming you've loaded a program already)

BASIC: save 'printer'
COBOL: p'printer'
FORTRAN: p'printer'
Pascal: p'printer'

Note that Waterloo BASIC is NOT compatible with Comm0dore BASIC

5. No SuperPET diagnostics disks come with the computer. If you have a SuperPET that's not acting correctly, contact me for a 8050 Tech Disk's SuperPET diagnostics program. At some point I will copy this file for download, especially if bugged enough.

6. There are no specific directions or code samples in the Pascal manual for printing program output.

After much work and research I was able to figure out how to send the output of a program to the printer (an 8023P). As part of my VCF E 5.0 exhibit, I wrote a "computer history quiz" program for the SuperPET that sends the quiz score results to the printer.

7. When in 6809/Waterloo mode remember that the ascii coding is not 7-bit standard! That means the ascii characters hex values don't match the PET 8032.

If you're wondering how to clear a screen in Waterloo Pascal, here is how you do it:

writeln(chr12));

...because "12" is the Waterloo equivalent of the clear screen character! On the Commodore 64 the clear screen is the "e" character whatever the ascii hex equiv is, I am not at the moment sure (I think it's 93H).



Reply
  Waterloo Pascal Code Listing by Bill Degnan - 12/13/2008 21:22
Here is a sample program that I wrote to demonstrate how to send the output of a program to a printer. The program consists of a 2-question computer history quiz. The program asks two multiple choice questions and allows the user to enter an answer for each. The results are sent to the printer, rather than the screen.

Good Pascal requires indenting the statements. Given more time I would comment, streamline, and format ...

----------------------------------

program vcfquiz(input,output);
var
a1,a2:integer;
z:char;
grade:integer;
c:integer;
p:text;

begin
grade:=0;
writeln(chr(12));
writeln;writeln;
writeln('COMPUTER HISTORY QUIZ');
writeln;writeln;
writeln('Instructions');
writeln('Read each question then enter the number of the correct answer');
writeln;
writeln('After answering all questions, your grade will be tabulated and');
writeln('sent to the printer');
writeln;writeln;writeln;
write('Are you ready? (Y)');
readln(z);

writeln(chr(12));
writeln('Mark 8 is to Intel 8008 as Altair 8800 is to:');
writeln('1- National Semiconductor IMP-16');
writeln('2- Motorola 8800');
writeln('3- Intel 8008');
writeln('4- Intel 8080');
writeln;
writeln('Choose One: 1,2,3,4');
readln(a1);
if a1=4 then
begin
grade := grade+10;
end;

writeln(chr(12));
writeln('What was John Kemeny of Dartmouth credited with inventing in 1964?');
writeln('1- hypertext');
writeln('2- FORTRAN');
writeln('3- PDP1 Space War');
writeln('4- BASIC');
writeln;
writeln('Choose One: 1,2,3,4');
readln(a2);
if a2=4 then
begin
grade := grade+10;
end;

rewrite(p,'printer');
writeln(p,'COMPUTER HISTORY QUIZ RESULTS');
writeln(p,' ');
writeln(p,' ');
writeln(p,'Your Grade is: ', grade, '/20');
writeln(p,' ');
writeln(p,'Mark 8 is to Intel 8008 as Altair 8800 is to .. 4- Intel 8080');
writeln(p,'Your answer was ',a1);
writeln(p,' ');
writeln(p,'What was John Kemeny of Dartmouth credited with inventing in');
writeln(p,'1964? .. 4- BASIC');
writeln(p,'Your answer was ',a2);
writeln(p,' ');
for c:=1 to 16 do
begin
writeln(p,' ');
end
end.



Reply
  SuperPET links by Bill Degnan - 12/21/2008 12:52
http://www.6502.org/user.../petindex/superpet.html


http://www.classiccmp.org/dunfield/pet/index.htm


Reply
  SuperPET WCS Disk Backup by Bill Degnan - 12/21/2017 08:28
Without the diskette labeled

SUPERPET
WCS
USE WITH 8050/8250

You can't do much with the system, except in 8032 mode. Make a backup of this diskette thusly:

1. Enter 8032 mode

2. Put the SuperPET disk in drive 1, and a blank initalized disk in drive 0. Run the following command:

COPY D1 to D0

(It may take a while to copy the disk, lots of blinking and short write/reads)

3. Turn off your system and put the new copy into drive 1

4. Power on in 6809 mode. Test the disk by executing a command from the menu. For example

p [RETURN]

... to enter Pascal development mode.

Reply
  SuperPet Starter-Pak by Bill Degnan - 12/03/2023 20:00
SuperPet Gazette Starter-Pak, a MUST READ if you want to make use of your SuperPet

Download Here (Requires site registration)

Reply

Resources:


Buy a Commodore Computer Poster

Popular Topics and FAQs


  • Commodore B Series Tips and Tricks
  • Aerocomp TRS 80 M 1 Expansion Unit DDC
  • Items Wanted
  • Lobo Max 80
  • Zenith Z-19-CN
  • Prototype PET 2001 photo
  • Using Toggle Switches to Analyze Memory
  • Commodore Disk Archive Project
  • PET 2001 Prototype at Gametronics 1977
  • Jim Butterfield Photo
  • IMSAI 8080 With Processor Tech. Cutter
  • Secrecy is the keystone of all tyranny
  • Cromemco System Three
  • Northstar Horizon - Boot Problem
  • Computer History and Restoration Links
  • Commodore BX-256-80 - 8088 Co-processor
  • S-100 board testing with Z-80 ICE
  • Donner 3500 - an early portable computer
  • Digital (DEC) PDP 11/05 NC Assembly
  • Univac 1219 rescue
  • IMSAI 1.4 BASIC vs. MITS 8K BASIC
  • Fido BBS listing node list 6-13-1986
  • PDP 8e
  • MITS 88-2 SIO (2SIO) for BASIC
  • Visual Technology Inc Model 1050
  • Amiga 2500 Restoration
  • The Evolution Of IBM Computers
  • Replacement teletype print hammer head
  • Archiving and Copying Software 101
  • Computers Built 1940 - 1950
  • CBM B-520 (a.k.a B256-80 or B500 256)
  • RCA COSMAC Microkit
  • Commodore 64K C-116 Mods
  • MITS 8800b Turnmon 9600 baud
  • Catweasel, 8in and 5 1/4
  • Raspberry Pi as Gateway to Internet
  • Digital PDP11 late 1969 early 1970
  • PDP 11/40 72 inch cabinet model
  • PDP 11/40 Industrial 11 model
  • Digitial MicroVAX 3100 30 System
  • Digital VAX 4000-200
  • Commodore 64 / 1541 DRIVEKNOCK
  • Booting the System Using RL02 drive
  • PACS: Reflections by Kathleen Mauchly
  • Tele-Graphic Computer Systems Inc.
  • Commodore B Series SID Jukebox?
  • Installing Core into PDP 11/40
  • Setting Up OpenVMS 7.1 DNS CLERK
  • Felt-Tarrant Comptometer Model J
  • NextStation Color
  • Digital Rainbow (PC100-B2)
  • 1970 Compusad Compulogical Tutor
  • Archiving Papertapes Using DSI NC 2400
  • 1976 P.C.C. Features the MAI JOLT 6502
  • 1961 Beckman DEXTIR Computer
  • UNIVAC 1 and UNIVAC File Computer 1
  • Past Issues:


    newbrain AD ports

    This image was selected at random from the archive. Click image for more photos and files from this set.