Difference between revisions of "Apple II"

From Computer History Wiki
Jump to: navigation, search
Line 13: Line 13:
 
}}
 
}}
  
== How To Use ==
+
>== How To Use ==
  
 
Okay, so you've got yourself an original Apple II.  For some reason, it was decided that the Apple II shouldn't start up into BASIC.  Oh no, it starts up into the [[Apple II Monitor]].  A very simple program allowing you to enter, view and execute machine language programs.  So if you just want to get your old Apple to ''do'' something, you'll probably want to enter [[Integer BASIC]].  You're looking at this:
 
Okay, so you've got yourself an original Apple II.  For some reason, it was decided that the Apple II shouldn't start up into BASIC.  Oh no, it starts up into the [[Apple II Monitor]].  A very simple program allowing you to enter, view and execute machine language programs.  So if you just want to get your old Apple to ''do'' something, you'll probably want to enter [[Integer BASIC]].  You're looking at this:
  
<pre>
+
&lt;pre&gt;
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Line 41: Line 41:
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 
*
 
*
</pre>
+
&lt;/pre&gt;
  
 
This is the Monitor prompt.  You'll probably want to enter  
 
This is the Monitor prompt.  You'll probably want to enter  
  
<pre>
+
&lt;pre&gt;
 
E000G
 
E000G
</pre>
+
&lt;/pre&gt;
  
 
This will jump to the address E000 and begin execution.  This happens to be the location of Integer BASIC in ROM.
 
This will jump to the address E000 and begin execution.  This happens to be the location of Integer BASIC in ROM.
  
<pre>
+
&lt;pre&gt;
 
*E000G
 
*E000G
  
>
+
&gt;
</pre>
+
&lt;/pre&gt;
  
 
You should enter a simple Hello World! program.
 
You should enter a simple Hello World! program.
  
<pre>
+
&lt;pre&gt;
>10 PRINT "HELLO"
+
&gt;10 PRINT &quot;HELLO&quot;
>20 END
+
&gt;20 END
>LIST
+
&gt;LIST
   10 PRINT "HELLO"
+
   10 PRINT &quot;HELLO&quot;
 
   20 END
 
   20 END
  
>RUN
+
&gt;RUN
 
HELLO
 
HELLO
  
>
+
&gt;
</pre>
+
&lt;/pre&gt;
  
 
At this point, you might want to learn more about [[Integer BASIC]], [[6502]] assembly and the Apple II programming model.
 
At this point, you might want to learn more about [[Integer BASIC]], [[6502]] assembly and the Apple II programming model.
  
 
{{Nav Apple}}
 
{{Nav Apple}}
 +
 +
----
 +
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
 +
----
 +
=[http://imovohege.co.cc Under Construction! Please Visit Reserve Page. Page Will Be Available Shortly]=
 +
----
 +
=[http://imovohege.co.cc CLICK HERE]=
 +
----
 +
</div>

Revision as of 04:54, 15 November 2010

The Apple II was the second computer sold by Apple, and their first major commercial success.


Apple II
Apple-II.jpg
An Apple II with monitor and two Disk II drives.
Manufacturer: Apple Computer Inc.
Year Introduced: June 5, 1977
Clock Speed: 1 MHz
Memory Size: 4 KiB by default, up to 48 KiB
Graphics: 24x40 text NTSC composite output, several graphics modes
CPU: MOS 6502


>== How To Use ==

Okay, so you've got yourself an original Apple II. For some reason, it was decided that the Apple II shouldn't start up into BASIC. Oh no, it starts up into the Apple II Monitor. A very simple program allowing you to enter, view and execute machine language programs. So if you just want to get your old Apple to do something, you'll probably want to enter Integer BASIC. You're looking at this:

<pre> @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

</pre>

This is the Monitor prompt. You'll probably want to enter

<pre> E000G </pre>

This will jump to the address E000 and begin execution. This happens to be the location of Integer BASIC in ROM.

<pre>

  • E000G

> </pre>

You should enter a simple Hello World! program.

<pre> >10 PRINT "HELLO" >20 END >LIST

  10 PRINT "HELLO"
  20 END

>RUN HELLO

> </pre>

At this point, you might want to learn more about Integer BASIC, 6502 assembly and the Apple II programming model.