home *** CD-ROM | disk | FTP | other *** search
- >
- > In article <199311221637.RAA01238@eunet.ch> mw@eunet.ch (Markus Wild) writes:
- > > > ObWhine: I'd like to have a PAL-mode, too. :-)
- > >
- > > Ok, I didn't remove if from the new console, so it's there for those
- > > that want to get headaches..
- >
- > How does one actually access the different modes supported by chopp's
- > console stuff? There seems to be some A2024 support in there, and I'd
- > LOVE to get X running on mine! :-) (especially since my sun3's monitor
- > went up in smoke and bright blue sparks recently, sigh).
-
- I haven't tested the 1024x1024 mode (I think it may need some work.), but
- I am currently running the 640x800 mode which works real nice,
-
- All you need to do is set the default screen height to 800. This can
- be done in ite_cc.c if you want to be clean. add
-
-
- hand crafted patch: :^)
- *** 53 ***
- /* globals */
- int ite_default_width = 640;
- ! #if defined (GRF_NTSC)
- int ite_default_height = 400;
- int ite_default_depth = 2;
- --- 53 ---
- /* globals */
- int ite_default_width = 640;
- + #if defined (GRF_A2024)
- + int ite_default_height = 800;
- + int ite_default_depth = 1;
- ! #elif defined (GRF_NTSC)
- int ite_default_height = 400;
- int ite_default_depth = 2;
-
- [for some reason markus didn't include this from my sources.]
-
- or if you just want to see it work :^)
-
- binpatch -s _ite_default_height -r 800 vmunix
-
- > Also, in both 713 and 714, reboot stopped working. It used to work
- > perfectly, now it gives me fireworks. The display area of the screen
- > (the 640x400 in the midle, the overscan area stays grey) alternates
- > between a pattern of vertical white stripes and grey/blue/black
- > "static". I'm running on a B2000 with a GVP Series II '030, 8M ram.
-
- Just three-finger salute at this point, I wanted to get this version
- to Markus and didn't have time to find this one. The fireworks shouldn't
- be dangerous, I belive its just random copper list date, I don't think
- my code is being told when to turn off.... looking into this.
-
-