Navigation
Apple 1
|
The Woz Monitor
The Apple 1 was far more advanced, it did contain some ROM memory.
The basic version of the Apple 1 had a total of 256 bytes of ROM!
Remember that memory was very expensive at the time the Apple 1 was developed.
This ROM was filled with the legendary Woz Monitor.
It allowed the user to examine and change memory contents and it allowed machine language programs to be started.
Using The Woz MonitorThe original Apple 1 did not come with a Reset circuit, which means that the user has to press the RESET switch in order to get the machine started. Once you do that a back slash '\' is printed on the screen and the cursor will drop down one line. The cursor position is represented by a flashing '@' symbol.
You can now type address, data and commands which will be executed as soon as you press the Return key.
The input buffer can hold up to 127 character, if you type more characters before hitting the Return key the input line will be erased and will start again from scratch.
This is overflow situation is indicated by a new back slash after which the cursor drops one line again.
Address inputs are truncated to the least significant 4 hexadecimal digits.
Data inputs are truncated to the least significant 2 hexadecimal digits.
If an error is encountered during the parsing of the input line then the rest of the line is simply ignored, without warning! Commands executed before the error are executed normally though.
Examining memory (memory dump)
4F 004F: 0F Note: The bold typed characters are what the user types. All other characters are responses from the Apple 1. Now let us examine a block of memory from the last opened location to the next specified location. .5A 0050: 00 01 02 03 04 05 06 07 0058: 08 09 0A Note: 004F is still considered the most recently opened location. We can also combine the previous two examples into one commend: 4F.5A 0040: 0F 0050: 00 01 02 03 04 05 06 07 0058: 08 09 0A Note: Only the first location of the block 4F is considered opened. You can also examine several locations at once, with all addresses on one command line. 4F 52 56 004F: 0F 0052: 02 0056: 06 Note: 0056 is considered the most recently opened address. Let's take this concept into the extremes and combine some block and single address examinations on one command line. 4F.52 56 58.5A 004F: 0F 0050: 00 01 02 0056: 06 0058: 08 09 0A Note: By now you won't be surprised that 0058 is considered the most recently opened location. Finally let's examine some successive blocks of memory. This can be handy if you want to examine a larger block of memory which will not fit on one monitor screen. Remember that there is no way to halt a large examine list other than hitting the RESET button! 4F.52 004F: 0F 0050: 00 01 02 .55 0053: 03 04 05 .5A 0056: 06 07 0058: 08 09 0A
Depositing memory (changing memory contents)
30:A0 0030: FF Note: FF is what location 00300 used to contain before the operation, from now on it contains A0. Location 0030 is now considered the most recently opened location. Now we're going to deposit some more bytes in successive locations, starting from the last deposited location. :A1 A2 A3 A4 A5 Note: Location 31 now contains A1, location 32 contains A2 and so on until location 35 which now contains A5. Combining these two techniques will give us the next example. 30:A0 A1 A2 A3 A4 A5 0030: FF Note: Location 0030 used to contain FF in this example. Breaking up a long entry into multiple command lines is done like this: 30:A1 A2 0030: FF :A2 A3 :A4 A5 Note: A colon in a command means "start depositing data from the most recently deposited location, or if none, then from the most recently opened location. Now we're going to examine a piece of memory and then deposit some new data into it: 30.35 0030: A0 A1 A2 A3 A4 A5 :B0 B1 B2 B3 B4 B5 Note: New data deposited beginning at most recently opened location, which is 0030 in this example.
Running a program
10F0 R 10F0: A9 Note the cursor is left immediately to the right of the displayed data; it is not returned to the next line. It's the program's responsibility to control the rest of the output. From now on the user program is in control of the Apple 1. If the user program does not return to the Woz monitor (by jumping to address $FF1F) you'll have to press the RESET key to stop your program and return to the Woz Monitor. You can also enter a program and run it all from the same command line. Please note that this only works for very short programs of course. 40: A9 0 20 EF FF 38 69 0 4C 40 0 R 40: FF
Note: FF is the previous contents of location 0040.
The Woz Monitor's RAM UseThe monitor needs some RAM memory to perform its tasks. When a user program is running all bytes used by the monitor may be recycled, the monitor doesn't care about the contents of any of the memory locations when it regains control again. Here's the complete list of all the memory the Woz Monitor requires while it is running:
The next addresses are not exactly RAM locations, which doesn't make them less important though. They are the 6821 PIA control registers.
Useful RoutinesApart from the monitor program itself the Woz Monitor contains only a few useful routines which can be called by user programs.
If you want to read a single character from the keyboard from within your own machine language program you can use the following piece of code:
KBDIN LDA KBDCR See if there is a character available
BPL KBDIN Not as long as b7 remains low
LDA KBD Get the character and clear the flag
The Woz Monitor In More DetailAs a user you do not need to know the details about the Woz Monitor. But since I had to understand how the Apple 1 worked I had to find out all the details for myself anyway. Therefore I might as well share them with you in case you're interested.
Here you see the entire listing of the Woz Monitor. I did my best to describe in detail what is actually happening in the program, although most of the remarks are the original remarks made by Steve himself. The source code wozmon.asm is part of a download package which can be downloaded from the download section.
Now we're going to take a closer look under the bonnet of the Woz Monitor.
After studying it a bit closer you'll soon notice that Steve had to make every effort to squeeze his monitor in the tight 256 bytes memory space of ROM he had available.
However all this squeezing came with a cost. I've listed some of the concessions Steve had to make in order to get the job done with only 256 bytes at his disposal.
Mind you, despite of all these concessions Steve managed to do it all in 254 bytes, 2 bytes of the ROM are still unused at the end.
Finally looking at the vector table at the end of the program teaches us that NMI handling should be done by code at address $0F00.
And IRQ handling is done by code starting at address $0000.
|