[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [N8VEM-S100:4946] Re: Fake 65C02



That's really handy! And short. I'll have to remember that, thanks!

> On Aug 15, 2014, at 20:54, Rich Leary <richar...@gmail.com> wrote:
> 
> By the way here is the skeleton code to determine if the processor is NMOS or CMOS:
> 
>         lda     #$99        
>         clc
>         sed
>         adc     #$01
>         beq     cmos
> ;if here it is nmos
> nmos: ;put in code to say "NMOS" and exit
> ;if here it is cmos
> cmos:  put in code to say "CMOS" and exit