Page 1 of 1

Activating CG1 mode

Posted: Sun Mar 30, 2025 7:58 pm
by robcfg
I was wondering if the CG1 mode (64x64 4 color graphics mode) can be set on the Dragon.

I did try with a small assembly program but probably did something wrong.

Re: Activating CG1 mode

Posted: Mon Mar 31, 2025 9:35 pm
by pser1
Hello Robert
according to the book 'Anatomy of the Dragon' to set the graphic mode 64x64 4 colours you just have to do this
POKE&HFFC1,0:POKE&HFFC2,0:POKE&HFFC4,0 in order to set the SAM
And then POKE&HFF22,&H80 to set the PIA
cheers!

Re: Activating CG1 mode

Posted: Mon Mar 31, 2025 11:17 pm
by robcfg
That worked beautifully!

I must have made some silly error when I tried before... :mrgreen:

Thank you very much, Pere!