Thanks for your suggestion. I tried print(chr$(i)) from i - 0 to 65535 and all I see is the usual microsoft stuff and BASIC commands in standard ROM and the screen menu items. Doesn't the option ROM reside at the same memory address as the standard ROM and can only be accessed by memory switching ?
Thanks On 3/12/2017 5:33 PM, Douglas Quagliana wrote: > You could try writing a little FOR loop in basic to PEEK the memory and print > the contents. > > Perhaps something like > > FOR I=62000 TO 65535: PRINT CHR( PEEK(I)); : NEXT > > then look for something readable like "Option ROM (C) 1986 Club100" ... or > whatever. You might need to change the starting and ending addresses. > > Good luck, > Douglas > >> On Mar 12, 2017, at 8:56 AM, hargarg trurthsr <[email protected]> wrote: >> Is there any way to figure out >> what the rom is from basic ? >>
