Disk drive in Apple II+ does not work?

6 posts / 0 new
Last post
Offline
Last seen: 7 years 7 months ago
Joined: Jul 16 2006 - 17:30
Posts: 81
Disk drive in Apple II+ does not work?

Hi
I have an Apple "Disk II interface card" from 1978. For some reason, it does not work in my Apple II+. If I insert it, the Apple won't boot at all. Seems like data bus is corrupted.
Funny thing is the card is probably OK. I tested it in an Apple IIe before. I discovered that the reason for data bus corruption in the II+ is that a PROM IC on the interface card is sucking current from the data bus, when it (the PROM) has no power supply (shut off when device is not selected). The PROM seems fine in all other aspects.
I'm starting to believe this card just is not designed for the Apple II+. Is this correct?

Best regards
Jakob

Offline
Last seen: 8 years 4 months ago
Joined: Apr 10 2006 - 20:01
Posts: 1013
Re: Disk drive in Apple II+ does not work?

I'm starting to believe this card just is not designed for the Apple II+. Is this correct?

Woz designed it for the non-plussed Apple ][, actually. But (if it's good) it'll work fine in a ][+. Do you get a beep on startup? Anything on the screen? How does it differ when the card isn't inserted? What do you normally have for a disk controller if this isn't the one you use?

Offline
Last seen: 3 weeks 5 days ago
Joined: Dec 13 2005 - 08:40
Posts: 265
It may not have the auto star

It may not have the auto start rom chip in it. May have to do a PR#6 to boot the machine. I seen to remember about the auto staet chip.

mmphosis's picture
Offline
Last seen: 3 days 13 hours ago
Joined: Aug 18 2005 - 16:26
Posts: 433
13 sectors

Are you using a 13 sector boot floppy or a 16 sector boot floppy? The original Disk ][ (and controller card?) could only boot and use 13 sector disks. You might need/want to upgrade the PROMs (on the disk or the controller card, or both) to boot and use 16 sector disks.

Offline
Last seen: 7 years 7 months ago
Joined: Jul 16 2006 - 17:30
Posts: 81
The Apple II+ works fine with

The Apple II+ works fine without the disk interface card. When I plug the card in, the Apple does NOT beep, and screen is ful of garbage characters.
Looking at the address bus, it seems like the Apple runs a few instructions as normal, then reads/writes at sth like 0xFFFE, and then freezes at 0xFFFF. BTW anyone knows what happens when the 6502 reaches execution att 0xFFFF? Does it roll-over to 0, or halts? It would help to know.
The Apple II+ seems to have the autostart ROM. Normally I get the "]" prompt (actually, it is a swedish character set, so I get "å" for prompt - quite funny).
Part of the problem could be that I had to replace the (broken) 8T28 data bus driver at H10 with an 74HC245. The '245 might not be able to supply all the current that the disk interface card sinks through the data bus when not active. As I said, the card seems to sink quite some current thorugh the data bus even when not active, since one of the PROMs does _not_ leave its pins in a high-impedance state when turned off.

mmphosis's picture
Offline
Last seen: 3 days 13 hours ago
Joined: Aug 18 2005 - 16:26
Posts: 433
6502 roll-over

Okay, it doesn't sound like the problem is the 13 sector thing I posted.

Here is a little test program to test the "roll-over" behaviour of your 6502, you need the 16K RAM card installed...

]HOME:CALL-151 ;clear screen and go into the monitor
*C081 C081 ;write enable RAM card, read from ROM
*D000<D000.FFFFM ;copy ROM to RAM
*C083 C083 ;write enable RAM card, read from RAM
*FFFE:A9 0 ; FFFE- LDA #$0
*0:8D 0 4 ; 0000- STA $400
*3:60 ; 0003- RTS
*FFFEG ;run this program, see what happens

If your 6502 "rolls over", this program puts an inverted @ in the lefthand corner and returns to the monitor gracefully.

Log in or register to post comments