[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: graphic display problem
- Subject: Re: graphic display problem
- From: "Deckard" <boutillon@free.fr>
- Date: 30 Jun 2006 01:38:51 -0700
- Complaints-to: groups-abuse@google.com
- Injection-info: i40g2000cwc.googlegroups.com; posting-host=162.61.72.5; posting-account=HmyUBw0AAADvEAfrSgI5medKFLw5GpQf
- Newsgroups: comp.sys.apple2
- Organization: http://groups.google.com
- References: <44a4c48d$0$863$ba4acef3@news.orange.fr>
- User-agent: G2/0.2
- Xref: g2news2.google.com comp.sys.apple2:9911
> 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