tweak two more of my tweaks

This commit is contained in:
Michaël Banaan Ananas 2014-03-22 23:52:59 +00:00
parent 9d5396c28b
commit d328d7c5c6
2 changed files with 8 additions and 8 deletions

View File

@ -1163,17 +1163,17 @@
#define SS22_MASTER_CLOCK (XTAL_49_152MHz) /* info from Guru */
#define PIXEL_CLOCK ((SS22_MASTER_CLOCK*2)/4) /* x 2 is due of the interlaced screen ... */
#define PIXEL_CLOCK (SS22_MASTER_CLOCK/2)
// VSync - 59.9042 Hz
// HSync - 15.7248 kHz
#define HTOTAL (781)
// HSync - 15.7248 kHz (may be inaccurate)
#define HTOTAL (800)
#define HBEND (0)
#define HBSTART (640)
#define VTOTAL (262*2+1)
#define VTOTAL (512)
#define VBEND (0)
#define VBSTART (240*2)
#define VBSTART (480)
#define MCU_SPEEDUP 1 /* mcu idle skipping */

View File

@ -434,12 +434,12 @@ static const int dendego_pressure_table[0x100] =
#define PIXEL_CLOCK (10000000*2)
// VSync - 55.6795Hz
// HSync - 24.639kHz / 24.690kHz
#define HTOTAL (811)
// HSync - 24.639kHz / 24.690kHz (may be inaccurate)
#define HTOTAL (768)
#define HBEND (0)
#define HBSTART (512)
#define VTOTAL (443) /* H/V - 442.51 / 443.43 total lines */
#define VTOTAL (468)
#define VBEND (0)
#define VBSTART (400)