home *** CD-ROM | disk | FTP | other *** search
/ Amiga GigaPD 3 / Amiga_GigaPD_v3_3of3.iso / netbsd / docs / mailinglist-archive / 1993-11 / text0270.txt < prev    next >
Encoding:
Text File  |  1993-06-25  |  1.9 KB  |  54 lines

  1. > In article <199311221637.RAA01238@eunet.ch> mw@eunet.ch (Markus Wild) writes:
  2. > > > ObWhine: I'd like to have a PAL-mode, too. :-)
  3. > > 
  4. > > Ok, I didn't remove if from the new console, so it's there for those
  5. > > that want to get headaches..
  6. > How does one actually access the different modes supported by chopp's
  7. > console stuff? There seems to be some A2024 support in there, and I'd
  8. > LOVE to get X running on mine! :-) (especially since my sun3's monitor
  9. > went up in smoke and bright blue sparks recently, sigh).
  10.  
  11. I haven't tested the 1024x1024 mode (I think it may need some work.), but
  12. I am currently running the 640x800 mode which works real nice,
  13.  
  14. All you need to do is set the default screen height to 800.  This can
  15. be done in ite_cc.c if you want to be clean.  add
  16.  
  17.  
  18. hand crafted patch: :^)
  19. *** 53 ***
  20.   /* globals */
  21.   int ite_default_width = 640;
  22. ! #if defined (GRF_NTSC)
  23.   int ite_default_height = 400;
  24.   int ite_default_depth = 2;
  25. --- 53 ---
  26.   /* globals */
  27.   int ite_default_width = 640;
  28. + #if defined (GRF_A2024)
  29. + int ite_default_height = 800;
  30. + int ite_default_depth = 1;
  31. ! #elif defined (GRF_NTSC)
  32.   int ite_default_height = 400;
  33.   int ite_default_depth = 2;
  34.  
  35. [for some reason markus didn't include this from my sources.]
  36.  
  37. or if you just want to see it work :^)
  38.  
  39. binpatch -s _ite_default_height -r 800 vmunix
  40.  
  41. > Also, in both 713 and 714, reboot stopped working. It used to work
  42. > perfectly, now it gives me fireworks. The display area of the screen
  43. > (the 640x400 in the midle, the overscan area stays grey) alternates
  44. > between a pattern of vertical white stripes and grey/blue/black
  45. > "static". I'm running on a B2000 with a GVP Series II '030, 8M ram.
  46.  
  47. Just three-finger salute at this point, I wanted to get this version
  48. to Markus and didn't have time to find this one.  The fireworks shouldn't
  49. be dangerous, I belive its just random copper list date, I don't think
  50. my code is being told when to turn off.... looking into this.
  51.  
  52.