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

Re: graphic display problem



> Here is a bad display I get with PAS.DEMO (kyan pascal demo of a graphic
> library):
> I have the Eve graphic card (Le chat mauve in french) on an Apple IIe.
> I suppose that MouseCalc correctly initialises the video board

MouseCalc was programmed by french guys, so the B&W mode is correctly
displayed with this french graphic card.

If you only want to see B&W screens, you'll have to patch the video
inits of your PAS.DEMO with the following code:

   LDX #2
1: STA $C001
   STA $C05D
   STA $C00C
   STA $C05E
   STA $C05F
   STA $C00D
   STA $C05E
   DEX
   BNE :1

   etc...

JM