Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
histcomp:apple_ii [2024-08-24 18:02] – finished copying appendix III tables from Inside the Apple IIe asdf | histcomp:apple_ii [2024-10-01 06:15] (current) – asdf | ||
---|---|---|---|
Line 5: | Line 5: | ||
Despite the [[.: | Despite the [[.: | ||
- | * \$0000--\$00ff: zero page | + | * \$0000--\$00FF: [[#zero page]] |
- | * \$0100--\$01ff: stack, Applesoft temporary storage | + | * \$0100--\$01FF: stack, |
- | * \$0200--\$02ff: keyboard/ | + | * \$0200--\$02FF: keyboard/ |
- | * \$0300--\$03cf: user assembly programs | + | * \$0300--\$03CF: user assembly programs |
- | * \$03d0--\$03ff: subroutine vectors for DOS, Applesoft, and system monitor | + | * \$03D0--\$03FF: subroutine vectors for DOS, Applesoft, and system monitor |
- | * \$0400--\$07ff: text/ | + | * \$0400--\$07FF: text/ |
- | * \$0800--\$0bff: text/ | + | * \$0800--\$0BFF: text/ |
- | * \$0c00--\$1fff: free for use | + | * \$0C00--\$1FFF: free for use |
- | * \$2000--\$3fff: high-res page 1 | + | * \$2000--\$3FFF: high-res page 1 |
- | * \$4000--\$5fff: high-res page 2 | + | * \$4000--\$5FFF: high-res page 2 |
- | * \$6000--\$bfff: normally free for use; \$9600 and above is used by DOS | + | * \$6000--\$BFFF: normally free for use; \$9600 and above is used by DOS |
- | * \$c000--\$c0ff: [[#I/O]] | + | * \$C000--\$C0FF: [[#I/O]] |
+ | * \$C100--\$C1FF: | ||
+ | * \$C200--\$C2FF: | ||
+ | * \$C300--\$C3FF: | ||
+ | * \$C400--\$C4FF: | ||
+ | * \$C500--\$C5FF: | ||
+ | * \$C600--\$C6FF: | ||
+ | * \$C700--\$C7FF: | ||
+ | |||
+ | |||
+ | ==== Zero page ==== | ||
==== I/O ==== | ==== I/O ==== | ||
<table |tab_io> | <table |tab_io> | ||
- | < | + | < |
^ Address ^ Direction ^ Symbolic name ^ Description ^ | ^ Address ^ Direction ^ Symbolic name ^ Description ^ | ||
| \$C000 | W | '' | | \$C000 | W | '' | ||
Line 177: | Line 187: | ||
| \$C0F0--\$C0FF | | | Reserved for use by slot 7 | | | \$C0F0--\$C0FF | | | Reserved for use by slot 7 | | ||
</ | </ | ||
+ | |||
+ | ==== Video memory ==== | ||
+ | ==== Other locations ==== | ||
+ | To determine the exact model and version, examine \$FBB3 and \$FBC0. If \$FBB3 contains \$06, the computer is a IIe or IIc. \$FBC0 can contain the following values: [(Little1985)] | ||
+ | |||
+ | * \$EA: IIe with original ROMs | ||
+ | * \$E0: IIe with enhanced ROMs | ||
+ | * \$00: IIc | ||
+ | |||
+ | ===== Programming ===== | ||
+ | ==== Applesoft ==== | ||
+ | ==== Integer BASIC ==== | ||
+ | ==== System monitor ==== | ||
+ | <table |tab_moncmd> | ||
+ | < | ||
+ | |||
+ | </ | ||
+ | ===== Operating systems ===== | ||
+ | ==== DOS 3.3 ==== | ||
+ | ==== ProDOS 8 ==== | ||
+ | ==== CP/M ==== | ||
+ | In order to run CP/M, a Z80 soft card is required. While we do not currently possess one, it should be possible to find one online --- or we may be able to assemble our own from scratch using available schematics [(msc80scschem)]. | ||
+ | |||
+ | ===== Peripheral cards ===== | ||
+ | As with the rest of this page, we will focus on cards our machine has installed. | ||
+ | |||
+ | The Apple IIe has eight expansion slots (7 regular and 1 auxiliary). This alone is indicative of a completely different era of Apple' | ||
+ | |||
+ | ==== Apple extended 80-column card ==== | ||
+ | ==== Disk II interface ==== | ||
+ | ==== Super Serial ==== | ||
+ | ==== Applied Engineering RAMFactor | ||
+ | A RAM disk/memory expansion. ProDOS automatically registers it as a volume named ''/ | ||
+ | |||
+ | The particular revision we have contains a total of 1 MB of RAM. | ||
+ | |||
+ | ===== Sample code ===== | ||
+ | ==== Determining current execution page ==== | ||
+ | This snippet is particularly useful for writing peripheral card ROM, where the code needs to function irrespective of its installed slot. It works by calling a " | ||
+ | |||
+ | If calling from a peripheral card, the slot number can be identified by ANDing the result with 0F. | ||
+ | <code asm6502> | ||
+ | ; stores the high byte of the execution address in the A register | ||
+ | ; clobbers: A, X | ||
+ | getpage: | ||
+ | JSR $FF58 ; push the return address to the stack | ||
+ | TSX ; use stack pointer as index to stack page | ||
+ | LDA $100, | ||
+ | RTS | ||
+ | </ | ||
+ | |||
+ | ==== Writing bytes as hexadecimal ==== | ||
+ | We don't have to reinvent the wheel for this one --- the [[#system monitor]] includes a handy routine called '' | ||
+ | |||
+ | <code asm6502> | ||
+ | PRBYTE: | ||
+ | LSR A | ||
+ | LSR A | ||
+ | LSR A | ||
+ | LSR A | ||
+ | JSR PRHEXZ | ||
+ | PLA | ||
+ | PRHEX: | ||
+ | PRHEXZ: | ||
+ | CMP #$BA | ||
+ | BCC COUT ; =$FDED | ||
+ | ADC #$06 | ||
+ | COUT: JMP (CSWL) | ||
+ | </ | ||
+ | |||
+ | To make use of it from Applesoft, load the following anywhere into memory: | ||
+ | |||
+ | <code asm6502> | ||
+ | JSR $DEBE ; CHKCOM - skips comma in Applesoft parsing | ||
+ | JSR $DFE3 ; GETPNT - get pointer to variable data, put it in $83...$84 | ||
+ | LDY #$00 | ||
+ | LDA ($83), | ||
+ | JSR $FDDA ; PRBYTE | ||
+ | INY | ||
+ | LDA ($83), | ||
+ | JMP $FDDA ; PRBYTE (will RTS for us) | ||
+ | </ | ||
+ | |||
+ | Then it can be called from Applesoft like so (assuming the program was loaded at \$0300): | ||
+ | |||
+ | <code basic> | ||
+ | 10 LET X% = 69 | ||
+ | 20 CALL 768,X% | ||
+ | </ | ||
+ | |||
+ | ==== Generate the Mandelbrot set ==== | ||
+ | Useful as a benchmark. The computer must be in 80-column mode for it to display properly. | ||
+ | |||
+ | <code basic> | ||
+ | 10 FOR Y=-12 TO 12 | ||
+ | 20 FOR X=-39 TO 39 | ||
+ | 30 CA=X*0.0458 | ||
+ | 40 CB=Y*.08333 | ||
+ | 50 A=CA | ||
+ | 60 B=CB | ||
+ | 70 FOR I = 0 TO 15 | ||
+ | 80 T=A*A-B*B+CA | ||
+ | 90 B=2*A*B+CB | ||
+ | 100 A=T | ||
+ | 110 IF(A*A+B*B)> | ||
+ | 120 NEXT I | ||
+ | 130 PRINT " "; | ||
+ | 140 GOTO 210 | ||
+ | 200 IF I>9 THEN I=I+7 | ||
+ | 205 PRINT CHR$(48+I); | ||
+ | 210 NEXT X | ||
+ | 220 PRINT | ||
+ | 230 NEXT Y | ||
+ | </ | ||
+ | |||
===== Resources ===== | ===== Resources ===== | ||
* [[https:// | * [[https:// | ||
+ | * [[http:// | ||
+ | * [[https:// | ||
+ | |||
+ | ===== Notes ===== | ||
+ | [(Little1985>// | ||
+ | [(a2etechnotes> | ||
+ | [(a2etechrefmanual> | ||
+ | [(msc80scschem> | ||
+ | [(a2eenhpg> | ||
+ | [(Sather1985> | ||
+ | [(usingprodos> | ||
+ | [(allpinoutsa2> | ||
~~REFNOTES~~ | ~~REFNOTES~~ |