Re: OPD: Computer One floppy interface recreation.
Posted: Sat Jul 13, 2024 8:26 pm
Built the first one and it doesn't work. I think that I have the address decode logic wrong in the GAL.
This is the original logic (on the schematic):
And this is my GAL code:
Can anyone see the bad logic, especially when it comes to the 1772 as that seems to be accessed erroneously almost constantly.
This is the original logic (on the schematic):
And this is my GAL code:
Code: Select all
Name OPD Computer One Floppy Interface Address Decode ;
PartNo 00 ;
Date 7/7/2024 ;
Revision 02 ;
Designer Engineer ;
Company Personal ;
Assembly None ;
Location ;
Device g16v8 ;
/* *************** INPUT PINS *********************/
PIN 1 = !OE; /**/
PIN 2 = !CE; /**/
PIN 3 = A13; /**/
PIN 4 = A14; /**/
PIN 5 = RW; /**/
PIN 6 = DEN; /**/
/*PIN 7 = NC; /**/
/*PIN 8 = NC; /**/
/*PIN 9 = NC; /**/
/*PIN 11 = NC; /**/
/* *************** OUTPUT PINS *********************/
/*PIN 12 = ; /**/
/*PIN 13 = ; /**/
/*PIN 14 = ; /**/
/*PIN 15 = ; /**/
/*PIN 16 = ; /**/
PIN 17 = !1772CS; /**/
PIN 18 = !175CP; /**/
PIN 19 = !ROMOE; /**/
ENABLE = OE # CE;
A13N14 = A13 & !A14;
1772CS = ENABLE & A14 & A13;
175CP = ENABLE & A13N14 & !RW;
ROMOE = ENABLE & RW & !A14;