Email or username:

Password:

Forgot your password?
Top-level
Tube❄️Time

anyway i think i have this thing 99% figured out. something that stumped me for a bit is the bus connector here. all the signals are passed through from the Amiga side (blue/green connector) to the card edge side (going to the next sidecar expansion) with two exceptions -- see the weird pins that stick out.

an edge connector soldered to the board. on the opposite side of the board is another board with an edge connector of the opposite gender (a card edge). all the pins are wired straight through except for two.
22 comments
Tube❄️Time replied to Tube❄️Time

the first pin is a CONFIG_IN# signal that comes on pin 12. if it is ground, then the card decodes the address space at E8xxxx -- the Amiga autoconfig space. this pin is always grounded on the A1000. once the card completes its config, it remaps that space to somewhere else in memory, and then pulls the CONFIG_DONE# line low, signaling the next sidecar expansion to do its autoconfig.

Tube❄️Time replied to Tube❄️Time

this is very similar to how autoconfig is done on the later Amigas, which uses pin 12 and pin 11 to create a "daisy chain" config mechanism.

Tube❄️Time replied to Tube❄️Time

in this design, pin 11 is used for something else: a card select signal that goes the opposite direction as the config done signal. if the expansion sidecar detects that it is being addressed, it asserts the CD_SEL# output that goes to the *downstream* sidecar (closer to the A1000). the downstream card sees this signal as UPS_CD_SEL#.

Tube❄️Time replied to Tube❄️Time

UPS_CD_SEL# from the point of view of the downstream sidecar means that the sidecar upstream has decoded the current address. if this signal is active and your own address decoder is also active, that means that both expansions are trying to decode the same address, which is a conflict! one of the PALs detects this and asserts BERR# (bus error).

Tube❄️Time replied to Tube❄️Time

here's how the address gets decoded. the register on the left is normally disabled, so the pullup and pulldown resistor arrays set up the address comparator to "E8" which is the autoconfig space. during configuration, the card gets assigned a new address which gets latched in the register and overrides the default address. simple and elegant.

Tube❄️Time replied to Tube❄️Time

i've been reading the Amiga 1000 Assembly and Component Level Repair manual and found this interesting memory map diagram. notice what is stored from F00000-F7FFFF? it is marked "CART." could this have been for a game cartridge slot? the Comspec SCSI card puts its autostart ROM here.

Jope replied to Tube❄️Time

@tubetime most likely it is a remnant of the old game console design, but it was also heavily used in os development for temporarily loading new ROM modules when testing, and also many expansions used it for their roms if they did not do autoconfigure.

Tube❄️Time replied to Tube❄️Time

here's the Comspec SCSI drive enclosure. it's a bit of a beast and supports two half height drives. Comspec was definitely Canadian; check out that mounting screw!

Aaron Sawdey, Ph.D. replied to Tube❄️Time

@tubetime Brings back many fond memories of ST-225Ns!

And the vias on that board are strangely attractive…

Tube❄️Time replied to Tube❄️Time

drive enclosure will not power up 😔

Tube❄️Time replied to Tube❄️Time

the controller is the UC3842. hmm.

Tube❄️Time replied to Tube❄️Time

the circuit is similar to the "typical application circuit" and it looks like there are two small electrolytic capacitors on the UC3842 VCC rail that have gone super leaky, preventing it from bootstrapping and powering up. it was a simple enough fix.

Tube❄️Time replied to Tube❄️Time

it's waiting for the HDD to spin up and initialize.

Tube❄️Time replied to Tube❄️Time

the yellow screen means it is trying to load the Kickstart off of a special drive partition.

Tube❄️Time replied to Tube❄️Time

oh that's not good, it blinks red 8 times. this means the drive failed the SCSI mode sense command for some reason. weird.

Chartreuse replied to Tube❄️Time

@tubetime Is that something special added by the controller interface? Or is the onboard boot room able to look for kickstart other than the floppy disk?

Tube❄️Time replied to Chartreuse

@ChartreuseK the onboard (non kickstart) ROM looks at F00000 and finds the controller ROM, which then takes over the boot process. i think this was originally for supporting game cartridges

Chartreuse replied to Tube❄️Time

@tubetime Ah okay, didn't know that was a thing it did. Certainly a nice feature to not need the kickstart disk to boot a hard disk

vxo replied to Tube❄️Time

@tubetime I've run into this in audio amplifiers too. They have a bootstrap pin which is connected to a RC network off a supply voltage - the cap charges up slowly once the power comes on and eventually lets the amp come out of inhibit. It's a power up thump avoidance thingy.

And yeah, when the cap fails short, the amp plays dead

Go Up