[comp.sys.apple] apple II questions

ATKINSON@RUBY.VCU.EDU (Roller Skating Maniac) (01/11/89)

Thanks to all for the help. I got Kermit downloaded and exec'd. Still
some problems to work on.

The //e enhanced question.  Software that requires an Enhanced iie tell
me that I don't have a 65C02. So is there any danger involved if I tear out
my 6502 and replace it? Is there a rom test I can do to find out what version
I am running?

Atkinson@vcuvax
Atkinson@ruby.vcu.edu

Luther

blackman@PHOENIX.PRINCETON.EDU (Scott Michael Blackman) (01/13/89)

This might do the job -- this will return what kind of processor you have,
no matter what your ROMS are like.

300:A9 00 80 02 EA 60 A9 38 EB A9 43 EB 60

The accumulator holds your processor type: $00 for 6502
					   $38 for 65816 or compatible
					   $43 for 65C02

If you like you can add "8D FF 02" to the end of that, and store the
result in 767 where you can say A=peek(767)

Hope this helps!

Scott

Blackman@phoenix.princeton.edu