Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate oktagon/oktapussy extendability #2

Open
tehKaiN opened this issue Sep 3, 2018 · 1 comment
Open

Investigate oktagon/oktapussy extendability #2

tehKaiN opened this issue Sep 3, 2018 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed question Further information is requested

Comments

@tehKaiN
Copy link
Member

tehKaiN commented Sep 3, 2018

Perhaps it's possible to leave some space on PCB for mounting programmable logic and/or ROM so that this expansion could work in less hackish way and support booting

@tehKaiN tehKaiN added enhancement New feature or request question Further information is requested help wanted Extra attention is needed labels Sep 3, 2018
@tehKaiN
Copy link
Member Author

tehKaiN commented Dec 5, 2018

Oktagon/oktapussy is troublesome 'cuz you need programmable stuff (PLD or ROM/flash) and it makes BOM considerably pricier.

some googling has given me an info that at addr $DE1000 there's Gayle register, and you read it like:

UBYTE ubGayle = 0;
volatile UBYTE *p = (uint16_t*)0xDE1000;
*p = 0xFF; // Write anything
for(UBYTE i = 0; i < 8; ++i) {
    ubGayle = (ubGayle << 1) | (*p >> 7);
}
logWrite("Gayle: %02X\n", ubGayle);

and if you expose D0 or D1 value there, you'll trick kickstart into thinking that there's Gayle onboard, and not Gary. It will magically boot IDE for you, probably. KS 37.300+ is needed for that ofc but those should be quite popular nowadays. For purists there's floppy boot option. ;)

This could be done with one address decoder and single 8-bit shift register.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant