Sharp logo

MZ-800 course Chapter 1 
1. Things worth knowing


1.2 Moving on with your SHARP

Now we shall discuss which actions you must perform in order for you to use the peripherals and other things important to use the computer and utilize the rest of the book.

MZ-800 DIP switches   First it is important to know how the dip switches ( the four small black levers at the back of your SHARP ) are configured best. You will have to turn your computer first, so you will face the backside.

The outermost left lever must face up. That means the computer is in 700-mode, but it also means that all programs can be loaded and will run. When BASIC-800 programs are loaded, the computer automatically switches to 800-mode.

The fourth lever is useless, so it does not matter how it is faced. ( Note by the translator: The fourth lever is actually a parity switch for the external data recorder. )

If you use a printer, levers two and three must be in the same position. If you own an MZ-printer, both levers must face up. If you own a Centronicsprinter, both levers must face down. If the printer does not work, then one of the levers must be switched up.

Since we are already facing the backside of the computer, we can explain the other two buttons at the backside. These are the volume control button and the reset button, which are positioned close to each other. Both buttons are labeled by usage.

Volume control and Reset switch  

When the sound coming out of your SHARP is either to loud or to soft, you can use the volume button to adjust the volume.

When your BASIC program crashes you can use the reset button to get back to the initial screen of the SHARP. This way you do not have to switch your computer off and on each time, which will break your computer sooner.

When you turn on your computer and a QD resides in the QUICK-DISKdrive, the QD-drive will start automatically and if the first program on the QD is an OBJ-file it will be loaded. If more than one OBJ-files are on the QD, it is a bit more tricky. How should you load those programs? This is how:

  • Put the QD in the QD-drive, but DO NOT close the QD-drive yet.
  • Turn on the computer and close the QD-drive.
  • Press M (MONITOR).
  • Type QD <cr>.
  • You will now see all the names of the programs on the screen.
  • Type QL <cr>.
  • You will now see the word FILENAME? appear.
  • Type the name of the program you want to load literally and press <cr>.
  • If you typed the name correctly, the program of your choice will be loaded.
  • Warning: The word OBJ must be in front of the program you want to load, otherwise the program will load, but the computer usually crashes after loading.

This was a short discussion on how to load an OBJ-file from QD. There are many more instructions that can be used inside the MONITOR, but they will be discussed when you actually need them.

Let us now discuss the most important BASIC instructions you might need when using peripherals.

Writing a program and beyond


How to make a BASIC program will be clear to you by now. First type a line and then press <cr>.

You can see your work afterwards or in between with the LIST instruction.

You can see everything by simply typing LIST <cr>. If the listing does not fit on one screen then the whole listing will still be shown. You can stop the listing by pressing SHIFT / BREAK, or interrupt it by pressing the space bar ( to resume press any key ), or interrupt it by pressing and holding the BREAK-button. When you release the BREAK-button the listing will continue.

When you are done typing, or you just want to save your program to QD or tape, you can do this with the SAVE instruction.

First you must know where your program will be saved, on QD or tape. If you only own a tape recorder you may skip the following part:

You can save your program by typing the following:

SAVE "CMT:xxxxxx" <cr> - for the tape recorder or

SAVE "QD:xxxxxx" <cr> - for the QD

Here xxxxxx can be replaced with any arbitrary name, as long as its length does not exceed 16 characters.

You can also make use of the DEFAULT instruction.

When you type DEFAULT "QD:" <cr> then everything is automatically saved to and loaded from QD.

When you type DEFAULT "CMT:" <cr> then everything is automatically saved to and loaded from tape.

After you have used DEFAULT or if you only own a tape recorder, typing SAVE "xxxxxx" <cr> will suffice.

When you want to load a program from tape or QD, you can do this with the LOAD instruction. It works exactly like the SAVE instruction. Just replace all occurrences of SAVE with LOAD.

When you have finished writing the program you can run it with the RUN instruction, but everybody knows that, right?

If you want to remove a program from memory you type NEW <cr>. When you type LIST <cr> afterwards, you will only see the message Ready or something similar in another language.

But enough about SAVING, LOADING, RUNning and LISTing. If you want to write your own program you will also need to know how to read the status of the keys, how to read the JOYSTICK and how to control a printer and so on.

First something about programming itself. You will not be able to make your own programs immediately, but you could make changes to existing programs. You could, for example, convert a program using the keyboard to a program using the joystick. This is often more easy than it would seem at first glance.

STICK(n)


This instruction is used quite often in BASIC programs that use the arrow-keys or a joystick. If it says:

  • STICK(0) the keyboard is used.
  • STICK(1) the first joystick port is used.
  • STICK(2) the second joystick port is used.

Sometimes the instruction is accompanied by the STRIG instruction, which is usually followed by the same number between parenthesis.

If you want to change the game in order to use the joystick, you simply replace the 0 with a 1 or a 2. The other way around is exactly the same. If you encounter the STRIG instruction you will also have to replace the number to the same one you used with STICK. By the way: you can use STRIG to switch between the space bar and the fire-button on the joystick.

How do we find out if and where STICK / STRIG occurs in a program? You can use the SEARCH instruction to find out. Just type:

SEARCH "STICK" <cr>

and all occurrences of STRIG are located. Analogous:

SEARCH "STRIG" <cr>

Unfortunately not all programs read the keyboard or joystick with the STICK instruction. Further on another method for reading the joystick is discussed. For the real beginner this will be too difficult to understand at this time, that is why we will not discuss it here.

GET


The keyboard can also be read using the GET instruction, this however, has some disadvantages. The advantage is that all keys, not only the arrow-keys are being read. When you see something like this in a program:

10 GET A$ :IF A$="" THEN 10

it means that the program will loop until a key is pressed.

There are a few more things you can do with GET, but that also qualifies as hard for beginners and the manual describes this function in detail, so we will not discuss this any further.

PRINTER-control


Before you can use the printer, you must first initialize it with the INIT command. For each printer the INIT command will be different. Often it is already known what command must be given, so we will not go in to it any further.

With PRINT/P you can send some text to the printer, for example:

PRINT/P "NEPTUNES."

You can also make a printout of the whole screen. Unfortunately this is not done with the HCOPY instruction as you might expect, a special program must be used. These programs are known as HCOPY-programs. There are at least 4 HCOPY programs for different printers.

Previous page
Next page
Contents


Go to the top of this page Home

last updated July 8, 2004
Arjan Habing, Mark de Rover, Jeroen F. J. Laros, sharpmz@sharpmz.org