]> Shamusworld >> Repos - virtualjaguar/blob - src/tom.cpp
Kludge to allow games that read HC in TOM to work
[virtualjaguar] / src / tom.cpp
1 //
2 // TOM Processing
3 //
4 // Originally by David Raingeard (cal2)
5 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS)
6 // Cleanups and endian wrongness amelioration by James L. Hammons
7 // Note: Endian wrongness probably stems from the MAME origins of this emu and
8 //       the braindead way in which MAME handles memory. :-)
9 //
10 // Note: TOM has only a 16K memory space
11 //
12 //      ------------------------------------------------------------
13 //      TOM REGISTERS (Mapped by Aaron Giles)
14 //      ------------------------------------------------------------
15 //      F00000-F0FFFF   R/W   xxxxxxxx xxxxxxxx   Internal Registers
16 //      F00000          R/W   -x-xx--- xxxxxxxx   MEMCON1 - memory config reg 1
17 //                            -x------ --------      (CPU32 - is the CPU 32bits?)
18 //                            ---xx--- --------      (IOSPEED - external I/O clock cycles)
19 //                            -------- x-------      (FASTROM - reduces ROM clock cycles)
20 //                            -------- -xx-----      (DRAMSPEED - sets RAM clock cycles)
21 //                            -------- ---xx---      (ROMSPEED - sets ROM clock cycles)
22 //                            -------- -----xx-      (ROMWIDTH - sets width of ROM: 8,16,32,64 bits)
23 //                            -------- -------x      (ROMHI - controls ROM mapping)
24 //      F00002          R/W   --xxxxxx xxxxxxxx   MEMCON2 - memory config reg 2
25 //                            --x----- --------      (HILO - image display bit order)
26 //                            ---x---- --------      (BIGEND - big endian addressing?)
27 //                            ----xxxx --------      (REFRATE - DRAM refresh rate)
28 //                            -------- xx------      (DWIDTH1 - DRAM1 width: 8,16,32,64 bits)
29 //                            -------- --xx----      (COLS1 - DRAM1 columns: 256,512,1024,2048)
30 //                            -------- ----xx--      (DWIDTH0 - DRAM0 width: 8,16,32,64 bits)
31 //                            -------- ------xx      (COLS0 - DRAM0 columns: 256,512,1024,2048)
32 //      F00004          R/W   -----xxx xxxxxxxx   HC - horizontal count
33 //                            -----x-- --------      (which half of the display)
34 //                            ------xx xxxxxxxx      (10-bit counter)
35 //      F00006          R/W   ----xxxx xxxxxxxx   VC - vertical count
36 //                            ----x--- --------      (which field is being generated)
37 //                            -----xxx xxxxxxxx      (11-bit counter)
38 //      F00008          R     -----xxx xxxxxxxx   LPH - light pen horizontal position
39 //      F0000A          R     -----xxx xxxxxxxx   LPV - light pen vertical position
40 //      F00010-F00017   R     xxxxxxxx xxxxxxxx   OB - current object code from the graphics processor
41 //      F00020-F00023     W   xxxxxxxx xxxxxxxx   OLP - start of the object list
42 //      F00026            W   -------- -------x   OBF - object processor flag
43 //      F00028            W   ----xxxx xxxxxxxx   VMODE - video mode
44 //                        W   ----xxx- --------      (PWIDTH1-8 - width of pixel in video clock cycles)
45 //                        W   -------x --------      (VARMOD - enable variable color resolution)
46 //                        W   -------- x-------      (BGEN - clear line buffer to BG color)
47 //                        W   -------- -x------      (CSYNC - enable composite sync on VSYNC)
48 //                        W   -------- --x-----      (BINC - local border color if INCEN)
49 //                        W   -------- ---x----      (INCEN - encrustation enable)
50 //                        W   -------- ----x---      (GENLOCK - enable genlock)
51 //                        W   -------- -----xx-      (MODE - CRY16,RGB24,DIRECT16,RGB16)
52 //                        W   -------- -------x      (VIDEN - enables video)
53 //      F0002A            W   xxxxxxxx xxxxxxxx   BORD1 - border color (red/green)
54 //      F0002C            W   -------- xxxxxxxx   BORD2 - border color (blue)
55 //      F0002E            W   ------xx xxxxxxxx   HP - horizontal period
56 //      F00030            W   -----xxx xxxxxxxx   HBB - horizontal blanking begin
57 //      F00032            W   -----xxx xxxxxxxx   HBE - horizontal blanking end
58 //      F00034            W   -----xxx xxxxxxxx   HSYNC - horizontal sync
59 //      F00036            W   ------xx xxxxxxxx   HVS - horizontal vertical sync
60 //      F00038            W   -----xxx xxxxxxxx   HDB1 - horizontal display begin 1
61 //      F0003A            W   -----xxx xxxxxxxx   HDB2 - horizontal display begin 2
62 //      F0003C            W   -----xxx xxxxxxxx   HDE - horizontal display end
63 //      F0003E            W   -----xxx xxxxxxxx   VP - vertical period
64 //      F00040            W   -----xxx xxxxxxxx   VBB - vertical blanking begin
65 //      F00042            W   -----xxx xxxxxxxx   VBE - vertical blanking end
66 //      F00044            W   -----xxx xxxxxxxx   VS - vertical sync
67 //      F00046            W   -----xxx xxxxxxxx   VDB - vertical display begin
68 //      F00048            W   -----xxx xxxxxxxx   VDE - vertical display end
69 //      F0004A            W   -----xxx xxxxxxxx   VEB - vertical equalization begin
70 //      F0004C            W   -----xxx xxxxxxxx   VEE - vertical equalization end
71 //      F0004E            W   -----xxx xxxxxxxx   VI - vertical interrupt
72 //      F00050            W   xxxxxxxx xxxxxxxx   PIT0 - programmable interrupt timer 0
73 //      F00052            W   xxxxxxxx xxxxxxxx   PIT1 - programmable interrupt timer 1
74 //      F00054            W   ------xx xxxxxxxx   HEQ - horizontal equalization end
75 //      F00058            W   xxxxxxxx xxxxxxxx   BG - background color
76 //      F000E0          R/W   ---xxxxx ---xxxxx   INT1 - CPU interrupt control register
77 //                            ---x---- --------      (C_JERCLR - clear pending Jerry ints)
78 //                            ----x--- --------      (C_PITCLR - clear pending PIT ints)
79 //                            -----x-- --------      (C_OPCLR - clear pending object processor ints)
80 //                            ------x- --------      (C_GPUCLR - clear pending graphics processor ints)
81 //                            -------x --------      (C_VIDCLR - clear pending video timebase ints)
82 //                            -------- ---x----      (C_JERENA - enable Jerry ints)
83 //                            -------- ----x---      (C_PITENA - enable PIT ints)
84 //                            -------- -----x--      (C_OPENA - enable object processor ints)
85 //                            -------- ------x-      (C_GPUENA - enable graphics processor ints)
86 //                            -------- -------x      (C_VIDENA - enable video timebase ints)
87 //      F000E2            W   -------- --------   INT2 - CPU interrupt resume register
88 //      F00400-F005FF   R/W   xxxxxxxx xxxxxxxx   CLUT - color lookup table A
89 //      F00600-F007FF   R/W   xxxxxxxx xxxxxxxx   CLUT - color lookup table B
90 //      F00800-F00D9F   R/W   xxxxxxxx xxxxxxxx   LBUF - line buffer A
91 //      F01000-F0159F   R/W   xxxxxxxx xxxxxxxx   LBUF - line buffer B
92 //      F01800-F01D9F   R/W   xxxxxxxx xxxxxxxx   LBUF - line buffer currently selected
93 //      ------------------------------------------------------------
94 //      F02000-F021FF   R/W   xxxxxxxx xxxxxxxx   GPU control registers
95 //      F02100          R/W   xxxxxxxx xxxxxxxx   G_FLAGS - GPU flags register
96 //                      R/W   x------- --------      (DMAEN - DMA enable)
97 //                      R/W   -x------ --------      (REGPAGE - register page)
98 //                        W   --x----- --------      (G_BLITCLR - clear blitter interrupt)
99 //                        W   ---x---- --------      (G_OPCLR - clear object processor int)
100 //                        W   ----x--- --------      (G_PITCLR - clear PIT interrupt)
101 //                        W   -----x-- --------      (G_JERCLR - clear Jerry interrupt)
102 //                        W   ------x- --------      (G_CPUCLR - clear CPU interrupt)
103 //                      R/W   -------x --------      (G_BLITENA - enable blitter interrupt)
104 //                      R/W   -------- x-------      (G_OPENA - enable object processor int)
105 //                      R/W   -------- -x------      (G_PITENA - enable PIT interrupt)
106 //                      R/W   -------- --x-----      (G_JERENA - enable Jerry interrupt)
107 //                      R/W   -------- ---x----      (G_CPUENA - enable CPU interrupt)
108 //                      R/W   -------- ----x---      (IMASK - interrupt mask)
109 //                      R/W   -------- -----x--      (NEGA_FLAG - ALU negative)
110 //                      R/W   -------- ------x-      (CARRY_FLAG - ALU carry)
111 //                      R/W   -------- -------x      (ZERO_FLAG - ALU zero)
112 //      F02104            W   -------- ----xxxx   G_MTXC - matrix control register
113 //                        W   -------- ----x---      (MATCOL - column/row major)
114 //                        W   -------- -----xxx      (MATRIX3-15 - matrix width)
115 //      F02108            W   ----xxxx xxxxxx--   G_MTXA - matrix address register
116 //      F0210C            W   -------- -----xxx   G_END - data organization register
117 //                        W   -------- -----x--      (BIG_INST - big endian instruction fetch)
118 //                        W   -------- ------x-      (BIG_PIX - big endian pixels)
119 //                        W   -------- -------x      (BIG_IO - big endian I/O)
120 //      F02110          R/W   xxxxxxxx xxxxxxxx   G_PC - GPU program counter
121 //      F02114          R/W   xxxxxxxx xx-xxxxx   G_CTRL - GPU control/status register
122 //                      R     xxxx---- --------      (VERSION - GPU version code)
123 //                      R/W   ----x--- --------      (BUS_HOG - hog the bus!)
124 //                      R/W   -----x-- --------      (G_BLITLAT - blitter interrupt latch)
125 //                      R/W   ------x- --------      (G_OPLAT - object processor int latch)
126 //                      R/W   -------x --------      (G_PITLAT - PIT interrupt latch)
127 //                      R/W   -------- x-------      (G_JERLAT - Jerry interrupt latch)
128 //                      R/W   -------- -x------      (G_CPULAT - CPU interrupt latch)
129 //                      R/W   -------- ---x----      (SINGLE_GO - single step one instruction)
130 //                      R/W   -------- ----x---      (SINGLE_STEP - single step mode)
131 //                      R/W   -------- -----x--      (FORCEINT0 - cause interrupt 0 on GPU)
132 //                      R/W   -------- ------x-      (CPUINT - send GPU interrupt to CPU)
133 //                      R/W   -------- -------x      (GPUGO - enable GPU execution)
134 //      F02118-F0211B   R/W   xxxxxxxx xxxxxxxx   G_HIDATA - high data register
135 //      F0211C-F0211F   R     xxxxxxxx xxxxxxxx   G_REMAIN - divide unit remainder
136 //      F0211C            W   -------- -------x   G_DIVCTRL - divide unit control
137 //                        W   -------- -------x      (DIV_OFFSET - 1=16.16 divide, 0=32-bit divide)
138 //      ------------------------------------------------------------
139 //      BLITTER REGISTERS
140 //      ------------------------------------------------------------
141 //      F02200-F022FF   R/W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   Blitter registers
142 //      F02200            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_BASE - A1 base register
143 //      F02204            W   -------- ---xxxxx -xxxxxxx xxxxx-xx   A1_FLAGS - A1 flags register
144 //                        W   -------- ---x---- -------- --------      (YSIGNSUB - invert sign of Y delta)
145 //                        W   -------- ----x--- -------- --------      (XSIGNSUB - invert sign of X delta)
146 //                        W   -------- -----x-- -------- --------      (Y add control)
147 //                        W   -------- ------xx -------- --------      (X add control)
148 //                        W   -------- -------- -xxxxxx- --------      (width in 6-bit floating point)
149 //                        W   -------- -------- -------x xx------      (ZOFFS1-6 - Z data offset)
150 //                        W   -------- -------- -------- --xxx---      (PIXEL - pixel size)
151 //                        W   -------- -------- -------- ------xx      (PITCH1-4 - data phrase pitch)
152 //      F02208            W   -xxxxxxx xxxxxxxx -xxxxxxx xxxxxxxx   A1_CLIP - A1 clipping size
153 //                        W   -xxxxxxx xxxxxxxx -------- --------      (height)
154 //                        W   -------- -------- -xxxxxxx xxxxxxxx      (width)
155 //      F0220C          R/W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_PIXEL - A1 pixel pointer
156 //                      R/W   xxxxxxxx xxxxxxxx -------- --------      (Y pixel value)
157 //                      R/W   -------- -------- xxxxxxxx xxxxxxxx      (X pixel value)
158 //      F02210            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_STEP - A1 step value
159 //                        W   xxxxxxxx xxxxxxxx -------- --------      (Y step value)
160 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (X step value)
161 //      F02214            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_FSTEP - A1 step fraction value
162 //                        W   xxxxxxxx xxxxxxxx -------- --------      (Y step fraction value)
163 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (X step fraction value)
164 //      F02218          R/W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_FPIXEL - A1 pixel pointer fraction
165 //                      R/W   xxxxxxxx xxxxxxxx -------- --------      (Y pixel fraction value)
166 //                      R/W   -------- -------- xxxxxxxx xxxxxxxx      (X pixel fraction value)
167 //      F0221C            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_INC - A1 increment
168 //                        W   xxxxxxxx xxxxxxxx -------- --------      (Y increment)
169 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (X increment)
170 //      F02220            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A1_FINC - A1 increment fraction
171 //                        W   xxxxxxxx xxxxxxxx -------- --------      (Y increment fraction)
172 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (X increment fraction)
173 //      F02224            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A2_BASE - A2 base register
174 //      F02228            W   -------- ---xxxxx -xxxxxxx xxxxx-xx   A2_FLAGS - A2 flags register
175 //                        W   -------- ---x---- -------- --------      (YSIGNSUB - invert sign of Y delta)
176 //                        W   -------- ----x--- -------- --------      (XSIGNSUB - invert sign of X delta)
177 //                        W   -------- -----x-- -------- --------      (Y add control)
178 //                        W   -------- ------xx -------- --------      (X add control)
179 //                        W   -------- -------- -xxxxxx- --------      (width in 6-bit floating point)
180 //                        W   -------- -------- -------x xx------      (ZOFFS1-6 - Z data offset)
181 //                        W   -------- -------- -------- --xxx---      (PIXEL - pixel size)
182 //                        W   -------- -------- -------- ------xx      (PITCH1-4 - data phrase pitch)
183 //      F0222C            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A2_MASK - A2 window mask
184 //      F02230          R/W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A2_PIXEL - A2 pixel pointer
185 //                      R/W   xxxxxxxx xxxxxxxx -------- --------      (Y pixel value)
186 //                      R/W   -------- -------- xxxxxxxx xxxxxxxx      (X pixel value)
187 //      F02234            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   A2_STEP - A2 step value
188 //                        W   xxxxxxxx xxxxxxxx -------- --------      (Y step value)
189 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (X step value)
190 //      F02238            W   -xxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_CMD - command register
191 //                        W   -x------ -------- -------- --------      (SRCSHADE - modify source intensity)
192 //                        W   --x----- -------- -------- --------      (BUSHI - hi priority bus)
193 //                        W   ---x---- -------- -------- --------      (BKGWREN - writeback destination)
194 //                        W   ----x--- -------- -------- --------      (DCOMPEN - write inhibit from data comparator)
195 //                        W   -----x-- -------- -------- --------      (BCOMPEN - write inhibit from bit coparator)
196 //                        W   ------x- -------- -------- --------      (CMPDST - compare dest instead of src)
197 //                        W   -------x xxx----- -------- --------      (logical operation)
198 //                        W   -------- ---xxx-- -------- --------      (ZMODE - Z comparator mode)
199 //                        W   -------- ------x- -------- --------      (ADDDSEL - select sum of src & dst)
200 //                        W   -------- -------x -------- --------      (PATDSEL - select pattern data)
201 //                        W   -------- -------- x------- --------      (TOPNEN - enable carry into top intensity nibble)
202 //                        W   -------- -------- -x------ --------      (TOPBEN - enable carry into top intensity byte)
203 //                        W   -------- -------- --x----- --------      (ZBUFF - enable Z updates in inner loop)
204 //                        W   -------- -------- ---x---- --------      (GOURD - enable gouraud shading in inner loop)
205 //                        W   -------- -------- ----x--- --------      (DSTA2 - reverses A2/A1 roles)
206 //                        W   -------- -------- -----x-- --------      (UPDA2 - add A2 step to A2 in outer loop)
207 //                        W   -------- -------- ------x- --------      (UPDA1 - add A1 step to A1 in outer loop)
208 //                        W   -------- -------- -------x --------      (UPDA1F - add A1 fraction step to A1 in outer loop)
209 //                        W   -------- -------- -------- x-------      (diagnostic use)
210 //                        W   -------- -------- -------- -x------      (CLIP_A1 - clip A1 to window)
211 //                        W   -------- -------- -------- --x-----      (DSTWRZ - enable dest Z write in inner loop)
212 //                        W   -------- -------- -------- ---x----      (DSTENZ - enable dest Z read in inner loop)
213 //                        W   -------- -------- -------- ----x---      (DSTEN - enables dest data read in inner loop)
214 //                        W   -------- -------- -------- -----x--      (SRCENX - enable extra src read at start of inner)
215 //                        W   -------- -------- -------- ------x-      (SRCENZ - enables source Z read in inner loop)
216 //                        W   -------- -------- -------- -------x      (SRCEN - enables source data read in inner loop)
217 //      F02238          R     xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_CMD - status register
218 //                      R     xxxxxxxx xxxxxxxx -------- --------      (inner count)
219 //                      R     -------- -------- xxxxxxxx xxxxxx--      (diagnostics)
220 //                      R     -------- -------- -------- ------x-      (STOPPED - when stopped in collision detect)
221 //                      R     -------- -------- -------- -------x      (IDLE - when idle)
222 //      F0223C            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_COUNT - counters register
223 //                        W   xxxxxxxx xxxxxxxx -------- --------      (outer loop count)
224 //                        W   -------- -------- xxxxxxxx xxxxxxxx      (inner loop count)
225 //      F02240-F02247     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_SRCD - source data register
226 //      F02248-F0224F     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_DSTD - destination data register
227 //      F02250-F02257     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_DSTZ - destination Z register
228 //      F02258-F0225F     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_SRCZ1 - source Z register 1
229 //      F02260-F02267     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_SRCZ2 - source Z register 2
230 //      F02268-F0226F     W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_PATD - pattern data register
231 //      F02270            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_IINC - intensity increment
232 //      F02274            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_ZINC - Z increment
233 //      F02278            W   -------- -------- -------- -----xxx   B_STOP - collision control
234 //                        W   -------- -------- -------- -----x--      (STOPEN - enable blitter collision stops)
235 //                        W   -------- -------- -------- ------x-      (ABORT - abort after stop)
236 //                        W   -------- -------- -------- -------x      (RESUME - resume after stop)
237 //      F0227C            W   -------- xxxxxxxx xxxxxxxx xxxxxxxx   B_I3 - intensity 3
238 //      F02280            W   -------- xxxxxxxx xxxxxxxx xxxxxxxx   B_I2 - intensity 2
239 //      F02284            W   -------- xxxxxxxx xxxxxxxx xxxxxxxx   B_I1 - intensity 1
240 //      F02288            W   -------- xxxxxxxx xxxxxxxx xxxxxxxx   B_I0 - intensity 0
241 //      F0228C            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_Z3 - Z3
242 //      F02290            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_Z2 - Z2
243 //      F02294            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_Z1 - Z1
244 //      F02298            W   xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx   B_Z0 - Z0
245 //      ------------------------------------------------------------
246
247 //#include <SDL.h>
248 #include "tom.h"
249 #include "video.h"
250 #include "gpu.h"
251 #include "objectp.h"
252 #include "cry2rgb.h"
253 #include "settings.h"
254 #include "clock.h"
255
256 #define NEW_TIMER_SYSTEM
257
258 // TOM registers (offset from $F00000)
259
260 #define MEMCON1         0x00
261 #define MEMCON2         0x02
262 #define HC                      0x04
263 #define VC                      0x06
264 #define VMODE           0x28
265 #define   MODE          0x0006          // Line buffer to video generator mode
266 #define   BGEN          0x0080          // Background enable (CRY & RGB16 only)
267 #define   VARMOD        0x0100          // Mixed CRY/RGB16 mode (only works in MODE 0!)
268 #define   PWIDTH        0x0E00          // Pixel width in video clock cycles (value written + 1)
269 #define BORD1           0x2A            // Border green/red values (8 BPP)
270 #define BORD2           0x2C            // Border blue value (8 BPP)
271 #define HP                      0x2E            // Values range from 1 - 1024 (value written + 1)
272 #define HBB                     0x30
273 #define HBE                     0x32
274 #define HDB1            0x38            // Horizontal display begin 1
275 #define HDB2            0x3A
276 #define HDE                     0x3C
277 #define VP                      0x3E            // Value ranges from 1 - 2048 (value written + 1)
278 #define VBB                     0x40
279 #define VBE                     0x42
280 #define VS                      0x44
281 #define VDB                     0x46
282 #define VDE                     0x48
283 #define VI                      0x4E
284 #define BG                      0x58
285 #define INT1            0xE0
286
287 //NOTE: These arbitrary cutoffs are NOT taken into account for PAL jaguar screens. !!! FIX !!!
288
289 // Arbitrary video cutoff values (i.e., first/last visible spots on a TV, in HC ticks)
290 /*#define LEFT_VISIBLE_HC                       208
291 #define RIGHT_VISIBLE_HC                1528//*/
292 #define LEFT_VISIBLE_HC                 208
293 #define RIGHT_VISIBLE_HC                1488
294 //#define TOP_VISIBLE_VC                25
295 //#define BOTTOM_VISIBLE_VC             503
296 #define TOP_VISIBLE_VC                  31
297 #define BOTTOM_VISIBLE_VC               511
298
299 //Are these PAL horizontals correct?
300 //They seem to be for the most part, but there are some games that seem to be
301 //shifted over to the right from this "window".
302 #define LEFT_VISIBLE_HC_PAL             208
303 #define RIGHT_VISIBLE_HC_PAL    1488
304 #define TOP_VISIBLE_VC_PAL              67
305 #define BOTTOM_VISIBLE_VC_PAL   579
306
307 //This can be defined in the makefile as well...
308 //(It's easier to do it here, though...)
309 //#define TOM_DEBUG
310
311 extern uint8 objectp_running;
312
313 static uint8 * tom_ram_8;
314 uint32 tom_width, tom_height;
315 static uint32 tom_timer_prescaler;
316 static uint32 tom_timer_divider;
317 static int32 tom_timer_counter;
318 //uint32 tom_scanline;
319 //uint32 hblankWidthInPixels = 0;
320 uint16 tom_jerry_int_pending, tom_timer_int_pending, tom_object_int_pending,
321         tom_gpu_int_pending, tom_video_int_pending;
322 //uint16 * tom_cry_rgb_mix_lut;
323 //int16 * TOMBackbuffer;
324 uint32 * TOMBackbuffer;
325
326 static char * videoMode_to_str[8] =
327         { "16 BPP CRY", "24 BPP RGB", "16 BPP DIRECT", "16 BPP RGB",
328           "Mixed mode", "24 BPP RGB", "16 BPP DIRECT", "16 BPP RGB" };
329
330 typedef void (render_xxx_scanline_fn)(uint32 *);
331
332 // Private function prototypes
333
334 void tom_render_16bpp_cry_scanline(uint32 * backbuffer);
335 void tom_render_24bpp_scanline(uint32 * backbuffer);
336 void tom_render_16bpp_direct_scanline(uint32 * backbuffer);
337 void tom_render_16bpp_rgb_scanline(uint32 * backbuffer);
338 void tom_render_16bpp_cry_rgb_mix_scanline(uint32 * backbuffer);
339
340 void tom_render_16bpp_cry_stretch_scanline(uint32 * backbuffer);
341 void tom_render_24bpp_stretch_scanline(uint32 * backbuffer);
342 void tom_render_16bpp_direct_stretch_scanline(uint32 * backbuffer);
343 void tom_render_16bpp_rgb_stretch_scanline(uint32 * backbuffer);
344 void tom_render_16bpp_cry_rgb_mix_stretch_scanline(uint32 * backbuffer);
345
346 render_xxx_scanline_fn * scanline_render_normal[] =
347 {
348         tom_render_16bpp_cry_scanline,
349         tom_render_24bpp_scanline,
350         tom_render_16bpp_direct_scanline,
351         tom_render_16bpp_rgb_scanline,
352         tom_render_16bpp_cry_rgb_mix_scanline,
353         tom_render_24bpp_scanline,
354         tom_render_16bpp_direct_scanline,
355         tom_render_16bpp_rgb_scanline
356 };
357
358 render_xxx_scanline_fn * scanline_render_stretch[] =
359 {
360         tom_render_16bpp_cry_stretch_scanline,
361         tom_render_24bpp_stretch_scanline,
362         tom_render_16bpp_direct_stretch_scanline,
363         tom_render_16bpp_rgb_stretch_scanline,
364         tom_render_16bpp_cry_rgb_mix_stretch_scanline,
365         tom_render_24bpp_stretch_scanline,
366         tom_render_16bpp_direct_stretch_scanline,
367         tom_render_16bpp_rgb_stretch_scanline,
368 };
369
370 render_xxx_scanline_fn * scanline_render[8];
371
372
373 // Screen info for various games [PAL]...
374 /*
375 BIOS
376 TOM: Horizontal Period written by M68K: 850 (+1*2 = 1702)
377 TOM: Horizontal Blank Begin written by M68K: 1711
378 TOM: Horizontal Blank End written by M68K: 158
379 TOM: Horizontal Display End written by M68K: 1696
380 TOM: Horizontal Display Begin 1 written by M68K: 166
381 TOM: Vertical Period written by M68K: 623 (non-interlaced)
382 TOM: Vertical Blank End written by M68K: 34
383 TOM: Vertical Display Begin written by M68K: 46
384 TOM: Vertical Display End written by M68K: 526
385 TOM: Vertical Blank Begin written by M68K: 600
386 TOM: Vertical Sync written by M68K: 618
387 TOM: Horizontal Display End written by M68K: 1665
388 TOM: Horizontal Display Begin 1 written by M68K: 203
389 TOM: Vertical Display Begin written by M68K: 38
390 TOM: Vertical Display End written by M68K: 518
391 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 151)
392 TOM: Horizontal Display End written by M68K: 1713
393 TOM: Horizontal Display Begin 1 written by M68K: 157
394 TOM: Vertical Display Begin written by M68K: 35
395 TOM: Vertical Display End written by M68K: 2047
396 Horizontal range: 157 - 1713 (width: 1557 / 4 = 389.25, / 5 = 315.4)
397
398 Asteroid
399 TOM: Horizontal Period written by M68K: 845 (+1*2 = 1692)
400 TOM: Horizontal Blank Begin written by M68K: 1700
401 TOM: Horizontal Blank End written by M68K: 122
402 TOM: Horizontal Display End written by M68K: 1600
403 TOM: Horizontal Display Begin 1 written by M68K: 268
404 TOM: Vertical Period written by M68K: 523 (non-interlaced)
405 TOM: Vertical Blank End written by M68K: 40
406 TOM: Vertical Display Begin written by M68K: 44
407 TOM: Vertical Display End written by M68K: 492
408 TOM: Vertical Blank Begin written by M68K: 532
409 TOM: Vertical Sync written by M68K: 513
410 TOM: Video Mode written by M68K: 04C7. PWIDTH = 3, MODE = 16 BPP RGB, flags: BGEN (VC = 461)
411
412 Rayman
413 TOM: Horizontal Display End written by M68K: 1713
414 TOM: Horizontal Display Begin 1 written by M68K: 157
415 TOM: Vertical Display Begin written by M68K: 35
416 TOM: Vertical Display End written by M68K: 2047
417 TOM: Video Mode written by M68K: 06C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN (VC = 89)
418 TOM: Horizontal Display Begin 1 written by M68K: 208
419 TOM: Horizontal Display End written by M68K: 1662
420 TOM: Vertical Display Begin written by M68K: 100
421 TOM: Vertical Display End written by M68K: 2047
422 TOM: Video Mode written by M68K: 07C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN VARMOD (VC = 205)
423 Horizontal range: 208 - 1662 (width: 1455 / 4 = 363.5)
424
425 Alien vs Predator
426 TOM: Vertical Display Begin written by M68K: 96
427 TOM: Vertical Display End written by M68K: 2047
428 TOM: Horizontal Display Begin 1 written by M68K: 239
429 TOM: Horizontal Display End written by M68K: 1692
430 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 378)
431 TOM: Vertical Display Begin written by M68K: 44
432 TOM: Vertical Display End written by M68K: 2047
433 TOM: Horizontal Display Begin 1 written by M68K: 239
434 TOM: Horizontal Display End written by M68K: 1692
435 TOM: Video Mode written by M68K: 06C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN (VC = 559)
436 TOM: Vertical Display Begin written by M68K: 84
437 TOM: Vertical Display End written by M68K: 2047
438 TOM: Horizontal Display Begin 1 written by M68K: 239
439 TOM: Horizontal Display End written by M68K: 1692
440 TOM: Vertical Display Begin written by M68K: 44
441 TOM: Vertical Display End written by M68K: 2047
442 TOM: Horizontal Display Begin 1 written by M68K: 239
443 TOM: Horizontal Display End written by M68K: 1692
444 Horizontal range: 239 - 1692 (width: 1454 / 4 = 363.5)
445
446 */
447
448 // Screen info for various games [NTSC]...
449 /*
450 Doom
451 TOM: Horizontal Display End written by M68K: 1727
452 TOM: Horizontal Display Begin 1 written by M68K: 123
453 TOM: Vertical Display Begin written by M68K: 25
454 TOM: Vertical Display End written by M68K: 2047
455 TOM: Video Mode written by M68K: 0EC1. PWIDTH = 8, MODE = 16 BPP CRY, flags: BGEN (VC = 5)
456 Also does PWIDTH = 4...
457 Vertical resolution: 238 lines
458
459 Rayman
460 TOM: Horizontal Display End written by M68K: 1727
461 TOM: Horizontal Display Begin 1 written by M68K: 123
462 TOM: Vertical Display Begin written by M68K: 25
463 TOM: Vertical Display End written by M68K: 2047
464 TOM: Vertical Interrupt written by M68K: 507
465 TOM: Video Mode written by M68K: 06C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN (VC = 92)
466 TOM: Horizontal Display Begin 1 written by M68K: 208
467 TOM: Horizontal Display End written by M68K: 1670
468 Display starts at 31, then 52!
469 Vertical resolution: 238 lines
470
471 Atari Karts
472 TOM: Horizontal Display End written by M68K: 1727
473 TOM: Horizontal Display Begin 1 written by M68K: 123
474 TOM: Vertical Display Begin written by M68K: 25
475 TOM: Vertical Display End written by M68K: 2047
476 TOM: Video Mode written by GPU: 08C7. PWIDTH = 5, MODE = 16 BPP RGB, flags: BGEN (VC = 4)
477 TOM: Video Mode written by GPU: 06C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN (VC = 508)
478 Display starts at 31 (PWIDTH = 4), 24 (PWIDTH = 5)
479
480 Iron Soldier
481 TOM: Vertical Interrupt written by M68K: 2047
482 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 0)
483 TOM: Horizontal Display End written by M68K: 1727
484 TOM: Horizontal Display Begin 1 written by M68K: 123
485 TOM: Vertical Display Begin written by M68K: 25
486 TOM: Vertical Display End written by M68K: 2047
487 TOM: Vertical Interrupt written by M68K: 507
488 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 369)
489 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 510)
490 TOM: Video Mode written by M68K: 06C3. PWIDTH = 4, MODE = 24 BPP RGB, flags: BGEN (VC = 510)
491 Display starts at 31
492 Vertical resolution: 238 lines
493 [Seems to be a problem between the horizontal positioning of the 16-bit CRY & 24-bit RGB]
494
495 JagMania
496 TOM: Horizontal Period written by M68K: 844 (+1*2 = 1690)
497 TOM: Horizontal Blank Begin written by M68K: 1713
498 TOM: Horizontal Blank End written by M68K: 125
499 TOM: Horizontal Display End written by M68K: 1696
500 TOM: Horizontal Display Begin 1 written by M68K: 166
501 TOM: Vertical Period written by M68K: 523 (non-interlaced)
502 TOM: Vertical Blank End written by M68K: 24
503 TOM: Vertical Display Begin written by M68K: 46
504 TOM: Vertical Display End written by M68K: 496
505 TOM: Vertical Blank Begin written by M68K: 500
506 TOM: Vertical Sync written by M68K: 517
507 TOM: Vertical Interrupt written by M68K: 497
508 TOM: Video Mode written by M68K: 04C1. PWIDTH = 3, MODE = 16 BPP CRY, flags: BGEN (VC = 270)
509 Display starts at 55
510
511 Double Dragon V
512 TOM: Horizontal Display End written by M68K: 1727
513 TOM: Horizontal Display Begin 1 written by M68K: 123
514 TOM: Vertical Display Begin written by M68K: 25
515 TOM: Vertical Display End written by M68K: 2047
516 TOM: Vertical Interrupt written by M68K: 507
517 TOM: Video Mode written by M68K: 06C7. PWIDTH = 4, MODE = 16 BPP RGB, flags: BGEN (VC = 9)
518
519 Dino Dudes
520 TOM: Horizontal Display End written by M68K: 1823
521 TOM: Horizontal Display Begin 1 written by M68K: 45
522 TOM: Vertical Display Begin written by M68K: 40
523 TOM: Vertical Display End written by M68K: 2047
524 TOM: Vertical Interrupt written by M68K: 491
525 TOM: Video Mode written by M68K: 06C1. PWIDTH = 4, MODE = 16 BPP CRY, flags: BGEN (VC = 398)
526 Display starts at 11 (123 - 45 = 78, 78 / 4 = 19 pixels to skip)
527 Width is 417, so maybe width of 379 would be good (starting at 123, ending at 1639)
528 Vertical resolution: 238 lines
529
530 Flashback
531 TOM: Horizontal Display End written by M68K: 1727
532 TOM: Horizontal Display Begin 1 written by M68K: 188
533 TOM: Vertical Display Begin written by M68K: 1
534 TOM: Vertical Display End written by M68K: 2047
535 TOM: Vertical Interrupt written by M68K: 483
536 TOM: Video Mode written by M68K: 08C7. PWIDTH = 5, MODE = 16 BPP RGB, flags: BGEN (VC = 99)
537 Width would be 303 with above scheme, but border width would be 13 pixels
538
539 Trevor McFur
540 Vertical resolution: 238 lines
541 */
542
543 uint32 RGB16ToRGB32[0x10000];
544 uint32 CRY16ToRGB32[0x10000];
545 uint32 MIX16ToRGB32[0x10000];
546
547 void TOMFillLookupTables(void)
548 {
549         for(uint32 i=0; i<0x10000; i++)
550                 RGB16ToRGB32[i] = 0xFF000000
551                         | ((i & 0xF100) >> 8)  | ((i & 0xE000) >> 13)
552                         | ((i & 0x07C0) << 13) | ((i & 0x0700) << 8)
553                         | ((i & 0x003F) << 10) | ((i & 0x0030) << 4);
554
555
556         for(uint32 i=0; i<0x10000; i++)
557         {
558                 uint32 chrm = (i & 0xF000) >> 12,
559                         chrl = (i & 0x0F00) >> 8,
560                         y = (i & 0x00FF);
561                                 
562                 uint32 r = (((uint32)redcv[chrm][chrl]) * y) >> 8,
563                         g = (((uint32)greencv[chrm][chrl]) * y) >> 8,
564                         b = (((uint32)bluecv[chrm][chrl]) * y) >> 8;
565                 
566                 CRY16ToRGB32[i] = 0xFF000000 | (b << 16) | (g << 8) | r;
567                 MIX16ToRGB32[i] = CRY16ToRGB32[i];
568         }
569
570         for(uint32 i=0; i<0x10000; i++)
571                 if (i & 0x01)
572                         MIX16ToRGB32[i] = RGB16ToRGB32[i];
573 }
574
575 void tom_set_pending_jerry_int(void)
576 {
577         tom_jerry_int_pending = 1;
578 }
579
580 void tom_set_pending_timer_int(void)
581 {
582         tom_timer_int_pending = 1;
583 }
584
585 void tom_set_pending_object_int(void)
586 {
587         tom_object_int_pending = 1;
588 }
589
590 void tom_set_pending_gpu_int(void)
591 {
592         tom_gpu_int_pending = 1;
593 }
594
595 void tom_set_pending_video_int(void)
596 {
597         tom_video_int_pending = 1;
598 }
599
600 uint8 * tom_get_ram_pointer(void)
601 {
602         return tom_ram_8;
603 }
604
605 uint8 tom_getVideoMode(void)
606 {
607         uint16 vmode = GET16(tom_ram_8, VMODE);
608         return ((vmode & VARMOD) >> 6) | ((vmode & MODE) >> 1);
609 }
610
611 //Used in only one place (and for debug purposes): OBJECTP.CPP
612 uint16 tom_get_vdb(void)
613 {
614 // This in NOT VDB!!!
615 //      return GET16(tom_ram_8, VBE);
616         return GET16(tom_ram_8, VDB);
617 }
618
619 //
620 // 16 BPP CRY/RGB mixed mode rendering
621 //
622 void tom_render_16bpp_cry_rgb_mix_scanline(uint32 * backbuffer)
623 {
624 //CHANGED TO 32BPP RENDERING
625         uint16 width = tom_width;
626         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
627         
628         //New stuff--restrict our drawing...
629         uint8 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
630         //NOTE: May have to check HDB2 as well!
631         // Get start position in HC ticks
632         int16 startPos = GET16(tom_ram_8, HDB1) - (vjs.hardwareTypeNTSC ? LEFT_VISIBLE_HC : LEFT_VISIBLE_HC_PAL);
633         startPos /= pwidth;
634         if (startPos < 0)
635                 current_line_buffer += 2 * -startPos;
636         else
637 //This case doesn't properly handle the "start on the right side of virtual screen" case
638 //Dunno why--looks Ok...
639 //What *is* for sure wrong is that it doesn't copy the linebuffer's BG pixels...
640 //This should likely be 4 instead of 2 (?--not sure)
641                 backbuffer += 2 * startPos, width -= startPos;
642
643         while (width)
644         {
645                 uint16 color = (*current_line_buffer++) << 8;
646                 color |= *current_line_buffer++;
647                 *backbuffer++ = MIX16ToRGB32[color];
648                 width--;
649         }
650 }
651
652 //
653 // 16 BPP CRY mode rendering
654 //
655 void tom_render_16bpp_cry_scanline(uint32 * backbuffer)
656 {
657 //CHANGED TO 32BPP RENDERING
658         uint16 width = tom_width;
659         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
660
661         //New stuff--restrict our drawing...
662         uint8 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
663         //NOTE: May have to check HDB2 as well!
664         int16 startPos = GET16(tom_ram_8, HDB1) - (vjs.hardwareTypeNTSC ? LEFT_VISIBLE_HC : LEFT_VISIBLE_HC_PAL);// Get start position in HC ticks
665         startPos /= pwidth;
666         if (startPos < 0)
667                 current_line_buffer += 2 * -startPos;
668         else
669 //This should likely be 4 instead of 2 (?--not sure)
670                 backbuffer += 2 * startPos, width -= startPos;
671
672         while (width)
673         {
674                 uint16 color = (*current_line_buffer++) << 8;
675                 color |= *current_line_buffer++;
676                 *backbuffer++ = CRY16ToRGB32[color];
677                 width--;
678         }
679 }
680
681 //
682 // 24 BPP mode rendering
683 //
684 void tom_render_24bpp_scanline(uint32 * backbuffer)
685 {
686 //CHANGED TO 32BPP RENDERING
687         uint16 width = tom_width;
688         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
689         
690         //New stuff--restrict our drawing...
691         uint8 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
692         //NOTE: May have to check HDB2 as well!
693         int16 startPos = GET16(tom_ram_8, HDB1) - (vjs.hardwareTypeNTSC ? LEFT_VISIBLE_HC : LEFT_VISIBLE_HC_PAL);       // Get start position in HC ticks
694         startPos /= pwidth;
695         if (startPos < 0)
696                 current_line_buffer += 4 * -startPos;
697         else
698 //This should likely be 4 instead of 2 (?--not sure)
699                 backbuffer += 2 * startPos, width -= startPos;
700
701         while (width)
702         {
703                 uint32 g = *current_line_buffer++;
704                 uint32 r = *current_line_buffer++;
705                 current_line_buffer++;
706                 uint32 b = *current_line_buffer++;
707                 *backbuffer++ = 0xFF000000 | (b << 16) | (g << 8) | r;
708                 width--;
709         }
710 }
711
712 //Seems to me that this is NOT a valid mode--the JTRM seems to imply that you would need
713 //extra hardware outside of the Jaguar console to support this!
714 //
715 // 16 BPP direct mode rendering
716 //
717 void tom_render_16bpp_direct_scanline(uint32 * backbuffer)
718 {
719         uint16 width = tom_width;
720         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
721         
722         while (width)
723         {
724                 uint16 color = (*current_line_buffer++) << 8;
725                 color |= *current_line_buffer++;
726                 *backbuffer++ = color >> 1;
727                 width--;
728         }
729 }
730
731 //
732 // 16 BPP RGB mode rendering
733 //
734 void tom_render_16bpp_rgb_scanline(uint32 * backbuffer)
735 {
736 //CHANGED TO 32BPP RENDERING
737         // 16 BPP RGB: 0-5 green, 6-10 blue, 11-15 red
738
739         uint16 width = tom_width;
740         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
741         
742         //New stuff--restrict our drawing...
743         uint8 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
744         //NOTE: May have to check HDB2 as well!
745         int16 startPos = GET16(tom_ram_8, HDB1) - (vjs.hardwareTypeNTSC ? LEFT_VISIBLE_HC : LEFT_VISIBLE_HC_PAL);       // Get start position in HC ticks
746         startPos /= pwidth;
747
748         if (startPos < 0)
749                 current_line_buffer += 2 * -startPos;
750         else
751 //This should likely be 4 instead of 2 (?--not sure)
752                 backbuffer += 2 * startPos, width -= startPos;
753
754         while (width)
755         {
756                 uint32 color = (*current_line_buffer++) << 8;
757                 color |= *current_line_buffer++;
758                 *backbuffer++ = RGB16ToRGB32[color];
759                 width--;
760         }
761 }
762
763 /////////////////////////////////////////////////////////////////////
764 // This stuff may just go away by itself, especially if we do some //
765 // good old OpenGL goodness...                                     //
766 /////////////////////////////////////////////////////////////////////
767
768 void tom_render_16bpp_cry_rgb_mix_stretch_scanline(uint32 *backbuffer)
769 {
770         uint16 width=tom_width;
771         uint8 *current_line_buffer=(uint8*)&tom_ram_8[0x1800];
772         
773         while (width)
774         {
775                 uint16 color = *current_line_buffer++;
776                 color <<= 8;
777                 color |= *current_line_buffer++;
778                 *backbuffer++ = MIX16ToRGB32[color];
779                 current_line_buffer += 2;
780                 width--;
781         }
782 }
783
784 void tom_render_16bpp_cry_stretch_scanline(uint32 *backbuffer)
785 {
786         uint32 chrm, chrl, y;
787
788         uint16 width=tom_width;
789         uint8 *current_line_buffer=(uint8*)&tom_ram_8[0x1800];
790         
791         while (width)
792         {
793                 uint16 color;
794                 color=*current_line_buffer++;
795                 color<<=8;
796                 color|=*current_line_buffer++;
797                 
798                 chrm = (color & 0xF000) >> 12;    
799                 chrl = (color & 0x0F00) >> 8;
800                 y    = (color & 0x00FF);
801                                 
802                 uint16 red   =  ((((uint32)redcv[chrm][chrl])*y)>>11);
803                 uint16 green =  ((((uint32)greencv[chrm][chrl])*y)>>11);
804                 uint16 blue  =  ((((uint32)bluecv[chrm][chrl])*y)>>11);
805                 
806                 uint16 color2;
807                 color2=*current_line_buffer++;
808                 color2<<=8;
809                 color2|=*current_line_buffer++;
810                 
811                 chrm = (color2 & 0xF000) >> 12;    
812                 chrl = (color2 & 0x0F00) >> 8;
813                 y    = (color2 & 0x00FF);
814                                 
815                 uint16 red2   = ((((uint32)redcv[chrm][chrl])*y)>>11);
816                 uint16 green2 = ((((uint32)greencv[chrm][chrl])*y)>>11);
817                 uint16 blue2  = ((((uint32)bluecv[chrm][chrl])*y)>>11);
818                 
819                 red=(red+red2)>>1;
820                 green=(green+green2)>>1;
821                 blue=(blue+blue2)>>1;
822
823                 *backbuffer++=(red<<10)|(green<<5)|blue;
824                 width--;
825         }
826 }
827
828 void tom_render_24bpp_stretch_scanline(uint32 *backbuffer)
829 {
830         uint16 width=tom_width;
831         uint8 *current_line_buffer=(uint8*)&tom_ram_8[0x1800];
832         
833         while (width)
834         {
835                 uint16 green=*current_line_buffer++;
836                 uint16 red=*current_line_buffer++;
837                 /*uint16 nc=*/current_line_buffer++;
838                 uint16 blue=*current_line_buffer++;
839                 red>>=3;
840                 green>>=3;
841                 blue>>=3;
842                 *backbuffer++=(red<<10)|(green<<5)|blue;
843                 current_line_buffer+=4;
844                 width--;
845         }
846 }
847
848 void tom_render_16bpp_direct_stretch_scanline(uint32 *backbuffer)
849 {
850         uint16 width=tom_width;
851         uint8 *current_line_buffer=(uint8*)&tom_ram_8[0x1800];
852         
853         while (width)
854         {
855                 uint16 color=*current_line_buffer++;
856                 color<<=8;
857                 color|=*current_line_buffer++;
858                 color>>=1;
859                 *backbuffer++=color;
860                 current_line_buffer+=2;
861                 width--;
862         }
863 }
864
865 void tom_render_16bpp_rgb_stretch_scanline(uint32 *backbuffer)
866 {
867         uint16 width=tom_width;
868         uint8 *current_line_buffer=(uint8*)&tom_ram_8[0x1800];
869         
870         while (width)
871         {
872                 uint16 color1=*current_line_buffer++;
873                 color1<<=8;
874                 color1|=*current_line_buffer++;
875                 color1>>=1;
876                 uint16 color2=*current_line_buffer++;
877                 color2<<=8;
878                 color2|=*current_line_buffer++;
879                 color2>>=1;
880                 uint16 red=(((color1&0x7c00)>>10)+((color2&0x7c00)>>10))>>1;
881                 uint16 green=(((color1&0x00003e0)>>5)+((color2&0x00003e0)>>5))>>1;
882                 uint16 blue=(((color1&0x0000001f))+((color2&0x0000001f)))>>1;
883
884                 color1=(red<<10)|(blue<<5)|green;
885                 *backbuffer++=color1;
886                 width--;
887         }
888 }
889
890 void TOMResetBackbuffer(uint32 * backbuffer)
891 {
892         TOMBackbuffer = backbuffer;
893 }
894
895 //
896 // Process a single scanline
897 //
898 void TOMExecScanline(uint16 scanline, bool render)
899 {
900         bool inActiveDisplayArea = true;
901
902 //Interlacing is still not handled correctly here... !!! FIX !!!
903         if (scanline & 0x01)                                                    // Execute OP only on even lines (non-interlaced only!)
904                 return;
905
906         if (scanline >= (uint16)GET16(tom_ram_8, VDB) && scanline < (uint16)GET16(tom_ram_8, VDE))
907         {
908                 if (render)
909                 {
910                         uint8 * current_line_buffer = (uint8 *)&tom_ram_8[0x1800];
911                         uint8 bgHI = tom_ram_8[BG], bgLO = tom_ram_8[BG + 1];
912
913                         // Clear line buffer with BG
914                         if (GET16(tom_ram_8, VMODE) & BGEN) // && (CRY or RGB16)...
915                                 for(uint32 i=0; i<720; i++)
916                                         *current_line_buffer++ = bgHI, *current_line_buffer++ = bgLO;
917
918                         OPProcessList(scanline, render);
919                 }
920         }
921         else
922                 inActiveDisplayArea = false;
923
924         // Try to take PAL into account...
925
926         uint16 topVisible = (vjs.hardwareTypeNTSC ? TOP_VISIBLE_VC : TOP_VISIBLE_VC_PAL),
927                 bottomVisible = (vjs.hardwareTypeNTSC ? BOTTOM_VISIBLE_VC : BOTTOM_VISIBLE_VC_PAL);
928
929         // Here's our virtualized scanline code...
930
931         if (scanline >= topVisible && scanline < bottomVisible)
932         {
933                 if (inActiveDisplayArea)
934                 {
935 //NOTE: The following doesn't put BORDER color on the sides... !!! FIX !!!
936                         if (vjs.renderType == RT_NORMAL)
937                                 scanline_render[tom_getVideoMode()](TOMBackbuffer);
938                         else//TV type render
939                         {
940 /*
941         tom_render_16bpp_cry_scanline,
942         tom_render_24bpp_scanline,
943         tom_render_16bpp_direct_scanline,
944         tom_render_16bpp_rgb_scanline,
945         tom_render_16bpp_cry_rgb_mix_scanline,
946         tom_render_24bpp_scanline,
947         tom_render_16bpp_direct_scanline,
948         tom_render_16bpp_rgb_scanline
949 #define VMODE           0x28
950 #define   MODE          0x0006          // Line buffer to video generator mode
951 #define   VARMOD        0x0100          // Mixed CRY/RGB16 mode (only works in MODE 0!)
952 */
953                                 uint8 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
954                                 uint8 mode = ((GET16(tom_ram_8, VMODE) & MODE) >> 1);
955                                 bool varmod = GET16(tom_ram_8, VMODE) & VARMOD;
956 //The video texture line buffer ranges from 0 to 1279, with its left edge starting at LEFT_VISIBLE_HC.
957 //So, we need to start writing into the backbuffer at HDB1, using pwidth as our scaling factor. The
958 //way it generates its image on a real TV!
959
960 //So, for example, if HDB1 is less than LEFT_VISIBLE_HC, then we have to figure out where in the VTLB
961 //that we start writing pixels from the Jaguar line buffer (VTLB start=0, JLB=something).
962
963                         }
964                 }
965                 else
966                 {
967                         // If outside of VDB & VDE, then display the border color
968 /*                      int16 * currentLineBuffer = TOMBackbuffer;
969                         uint8 g = tom_ram_8[BORD1], r = tom_ram_8[BORD1 + 1], b = tom_ram_8[BORD2 + 1];
970                         uint16 pixel = ((r & 0xF8) << 7) | ((g & 0xF8) << 2) | (b >> 3);//*/
971                         uint32 * currentLineBuffer = TOMBackbuffer;
972                         uint8 g = tom_ram_8[BORD1], r = tom_ram_8[BORD1 + 1], b = tom_ram_8[BORD2 + 1];
973                         uint32 pixel = 0xFF000000 | (b << 16) | (g << 8) | r;
974
975                         for(uint32 i=0; i<tom_width; i++)
976                                 *currentLineBuffer++ = pixel;
977                 }
978
979 //              TOMBackbuffer += GetSDLScreenPitch() / 2;       // Returns bytes, but we need words
980                 TOMBackbuffer += GetSDLScreenWidthInPixels();
981         }
982 }
983
984 //
985 // TOM initialization
986 //
987 void tom_init(void)
988 {
989 //      memory_malloc_secure((void **)&tom_cry_rgb_mix_lut, 2 * 0x10000, "CRY/RGB mixed mode LUT");
990
991         op_init();
992         blitter_init();
993 //This should be done by JERRY! pcm_init();
994         memory_malloc_secure((void **)&tom_ram_8, 0x4000, "TOM RAM");
995         tom_reset();
996         // Setup the non-stretchy scanline rendering...
997         memcpy(scanline_render, scanline_render_normal, sizeof(scanline_render));
998 //      tom_calc_cry_rgb_mix_lut();
999         TOMFillLookupTables();
1000 }
1001
1002 void tom_done(void)
1003 {
1004         op_done();
1005 //This should be done by JERRY! pcm_done();
1006         blitter_done();
1007         WriteLog("TOM: Resolution %i x %i %s\n", tom_getVideoModeWidth(), tom_getVideoModeHeight(),
1008                 videoMode_to_str[tom_getVideoMode()]);
1009 //      WriteLog("\ntom: object processor:\n");
1010 //      WriteLog("tom: pointer to object list: 0x%.8x\n",op_get_list_pointer());
1011 //      WriteLog("tom: INT1=0x%.2x%.2x\n",TOMReadByte(0xf000e0),TOMReadByte(0xf000e1));
1012 //      gpu_done();
1013 //      dsp_done();
1014         memory_free(tom_ram_8);
1015 //      memory_free(tom_cry_rgb_mix_lut);
1016 }
1017
1018 /*uint32 tom_getHBlankWidthInPixels(void)
1019 {
1020         return hblankWidthInPixels;
1021 }*/
1022
1023 uint32 tom_getVideoModeWidth(void)
1024 {
1025         //These widths are pretty bogus. Should use HDB1/2 & HDE/HBB & PWIDTH to calc the width...
1026 //      uint32 width[8] = { 1330, 665, 443, 332, 266, 222, 190, 166 };
1027 //Temporary, for testing Doom...
1028 //      uint32 width[8] = { 1330, 665, 443, 332, 266, 222, 190, 332 };
1029
1030         // Note that the following PWIDTH values have the following pixel aspect ratios:
1031         // PWIDTH = 1 -> 0.25:1 (1:4) pixels (X:Y ratio)
1032         // PWIDTH = 2 -> 0.50:1 (1:2) pixels
1033         // PWIDTH = 3 -> 0.75:1 (3:4) pixels
1034         // PWIDTH = 4 -> 1.00:1 (1:1) pixels
1035         // PWIDTH = 5 -> 1.25:1 (5:4) pixels
1036         // PWIDTH = 6 -> 1.50:1 (3:2) pixels
1037         // PWIDTH = 7 -> 1.75:1 (7:4) pixels
1038         // PWIDTH = 8 -> 2.00:1 (2:1) pixels
1039
1040         // Also note that the JTRM says that PWIDTH of 4 gives pixels that are "about" square--
1041         // this implies that the other modes have pixels that are *not* square!
1042         // Also, I seriously doubt that you will see any games that use PWIDTH = 1!
1043
1044         // NOTE: Even though the PWIDTH value is + 1, here we're using a zero-based index and
1045         //       so we don't bother to add one...
1046 //      return width[(GET16(tom_ram_8, VMODE) & PWIDTH) >> 9];
1047
1048         // Now, we just calculate it...
1049 /*      uint16 hdb1 = GET16(tom_ram_8, HDB1), hde = GET16(tom_ram_8, HDE),
1050                 hbb = GET16(tom_ram_8, HBB), pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
1051 //      return ((hbb < hde ? hbb : hde) - hdb1) / pwidth;
1052 //Temporary, for testing Doom...
1053         return ((hbb < hde ? hbb : hde) - hdb1) / (pwidth == 8 ? 4 : pwidth);*/
1054
1055         // To make it easier to make a quasi-fixed display size, we restrict the viewing
1056         // area to an arbitrary range of the Horizontal Count.
1057         uint16 pwidth = ((GET16(tom_ram_8, VMODE) & PWIDTH) >> 9) + 1;
1058         return (vjs.hardwareTypeNTSC ? RIGHT_VISIBLE_HC - LEFT_VISIBLE_HC : RIGHT_VISIBLE_HC_PAL - LEFT_VISIBLE_HC_PAL) / pwidth;
1059 //Temporary, for testing Doom...
1060 //      return (RIGHT_VISIBLE_HC - LEFT_VISIBLE_HC) / (pwidth == 8 ? 4 : pwidth);
1061 ////    return (RIGHT_VISIBLE_HC - LEFT_VISIBLE_HC) / (pwidth == 4 ? 8 : pwidth);
1062
1063 // More speculating...
1064 // According to the JTRM, the number of potential pixels across is given by the
1065 // Horizontal Period (HP - in NTSC this is 845). The Horizontal Count counts from
1066 // zero to this value twice per scanline (the high bit is set on the second count).
1067 // HBE and HBB define the absolute "black" limits of the screen, while HDB1/2 and
1068 // HDE determine the extent of the OP "on" time. I.e., when the OP is turned on by
1069 // HDB1, it starts fetching the line from position 0 in LBUF.
1070
1071 // The trick, it would seem, is to figure out how long the typical visible scanline
1072 // of a TV is in HP ticks and limit the visible area to that (divided by PWIDTH, of
1073 // course). Using that length, we can establish an "absolute left display limit" with
1074 // which to measure HBB & HDB1/2 against when rendering LBUF (i.e., if HDB1 is 20 ticks
1075 // to the right of the ALDL and PWIDTH is 4, then start writing the LBUF starting at
1076 // backbuffer + 5 pixels).
1077
1078 // That's basically what we're doing now...!
1079 }
1080
1081 // *** SPECULATION ***
1082 // It might work better to virtualize the height settings, i.e., set the vertical
1083 // height at 240 lines and clip using the VDB and VDE/VP registers...
1084 // Same with the width... [Width is pretty much virtualized now.]
1085
1086 // Now that that the width is virtualized, let's virtualize the height. :-)
1087 uint32 tom_getVideoModeHeight(void)
1088 {
1089 //      uint16 vmode = GET16(tom_ram_8, VMODE);
1090 //      uint16 vbe = GET16(tom_ram_8, VBE);
1091 //      uint16 vbb = GET16(tom_ram_8, VBB);
1092 //      uint16 vdb = GET16(tom_ram_8, VDB);
1093 //      uint16 vde = GET16(tom_ram_8, VDE);
1094 //      uint16 vp = GET16(tom_ram_8, VP);
1095         
1096 /*      if (vde == 0xFFFF)
1097                 vde = vbb;//*/
1098
1099 //      return 227;//WAS:(vde/*-vdb*/) >> 1;
1100         // The video mode height probably works this way:
1101         // VC counts from 0 to VP. VDB starts the OP. Either when
1102         // VDE is reached or VP, the OP is stopped. Let's try it...
1103         // Also note that we're conveniently ignoring interlaced display modes...!
1104 //      return ((vde > vp ? vp : vde) - vdb) >> 1;
1105 //      return ((vde > vbb ? vbb : vde) - vdb) >> 1;
1106 //Let's try from the Vertical Blank interval...
1107 //Seems to work OK!
1108 //      return (vbb - vbe) >> 1;        // Again, doesn't take interlacing into account...
1109 // This of course doesn't take interlacing into account. But I haven't seen any
1110 // Jaguar software that takes advantage of it either...
1111 //Also, doesn't reflect PAL Jaguar either... !!! FIX !!! [DONE]
1112 //      return 240;                                                                             // Set virtual screen height to 240 lines...
1113         return (vjs.hardwareTypeNTSC ? 240 : 256);
1114 }
1115
1116 //
1117 // TOM reset code
1118 // Now PAL friendly!
1119 //
1120 void tom_reset(void)
1121 {
1122         op_reset();
1123         blitter_reset();
1124         memset(tom_ram_8, 0x00, 0x4000);
1125
1126         if (vjs.hardwareTypeNTSC)
1127         {
1128                 SET16(tom_ram_8, MEMCON1, 0x1861);
1129                 SET16(tom_ram_8, MEMCON2, 0x35CC);
1130                 SET16(tom_ram_8, HP, 844);                              // Horizontal Period (1-based; HP=845)
1131                 SET16(tom_ram_8, HBB, 1713);                    // Horizontal Blank Begin
1132                 SET16(tom_ram_8, HBE, 125);                             // Horizontal Blank End
1133                 SET16(tom_ram_8, HDE, 1665);                    // Horizontal Display End
1134                 SET16(tom_ram_8, HDB1, 203);                    // Horizontal Display Begin 1
1135                 SET16(tom_ram_8, VP, 523);                              // Vertical Period (1-based; in this case VP = 524)
1136                 SET16(tom_ram_8, VBE, 24);                              // Vertical Blank End
1137                 SET16(tom_ram_8, VDB, 38);                              // Vertical Display Begin
1138                 SET16(tom_ram_8, VDE, 518);                             // Vertical Display End
1139                 SET16(tom_ram_8, VBB, 500);                             // Vertical Blank Begin
1140                 SET16(tom_ram_8, VS, 517);                              // Vertical Sync
1141                 SET16(tom_ram_8, VMODE, 0x06C1);
1142         }
1143         else    // PAL Jaguar
1144         {
1145                 SET16(tom_ram_8, MEMCON1, 0x1861);
1146                 SET16(tom_ram_8, MEMCON2, 0x35CC);
1147                 SET16(tom_ram_8, HP, 850);                              // Horizontal Period
1148                 SET16(tom_ram_8, HBB, 1711);                    // Horizontal Blank Begin
1149                 SET16(tom_ram_8, HBE, 158);                             // Horizontal Blank End
1150                 SET16(tom_ram_8, HDE, 1665);                    // Horizontal Display End
1151                 SET16(tom_ram_8, HDB1, 203);                    // Horizontal Display Begin 1
1152                 SET16(tom_ram_8, VP, 623);                              // Vertical Period (1-based; in this case VP = 624)
1153                 SET16(tom_ram_8, VBE, 34);                              // Vertical Blank End
1154                 SET16(tom_ram_8, VDB, 38);                              // Vertical Display Begin
1155                 SET16(tom_ram_8, VDE, 518);                             // Vertical Display End
1156                 SET16(tom_ram_8, VBB, 600);                             // Vertical Blank Begin
1157                 SET16(tom_ram_8, VS, 618);                              // Vertical Sync
1158                 SET16(tom_ram_8, VMODE, 0x06C1);
1159         }
1160
1161         tom_width = 0;
1162         tom_height = 0;
1163
1164         tom_jerry_int_pending = 0;
1165         tom_timer_int_pending = 0;
1166         tom_object_int_pending = 0;
1167         tom_gpu_int_pending = 0;
1168         tom_video_int_pending = 0;
1169
1170         tom_timer_prescaler = 0;                                        // TOM PIT is disabled
1171         tom_timer_divider = 0;
1172         tom_timer_counter = 0;
1173         memcpy(scanline_render, scanline_render_normal, sizeof(scanline_render));
1174 }
1175
1176 //
1177 // TOM byte access (read)
1178 //
1179 uint8 TOMReadByte(uint32 offset, uint32 who/*=UNKNOWN*/)
1180 {
1181 //???Is this needed???
1182 // It seems so. Perhaps it's the +$8000 offset being written to (32-bit interface)?
1183 // However, the 32-bit interface is WRITE ONLY, so that can't be it...
1184 // Also, the 68K CANNOT make use of the 32-bit interface, since its bus width is only 16-bits...
1185 //      offset &= 0xFF3FFF;
1186
1187 #ifdef TOM_DEBUG
1188         WriteLog("TOM: Reading byte at %06X\n", offset);
1189 #endif
1190
1191         if ((offset >= GPU_CONTROL_RAM_BASE) && (offset < GPU_CONTROL_RAM_BASE+0x20))
1192                 return GPUReadByte(offset, who);
1193         else if ((offset >= GPU_WORK_RAM_BASE) && (offset < GPU_WORK_RAM_BASE+0x1000))
1194                 return GPUReadByte(offset, who);
1195         else if ((offset >= 0xF00010) && (offset < 0xF00028))
1196                 return OPReadByte(offset, who);
1197         else if ((offset >= 0xF02200) && (offset < 0xF022A0))
1198                 return BlitterReadByte(offset, who);
1199         else if (offset == 0xF00050)
1200                 return tom_timer_prescaler >> 8;
1201         else if (offset == 0xF00051)
1202                 return tom_timer_prescaler & 0xFF;
1203         else if (offset == 0xF00052)
1204                 return tom_timer_divider >> 8;
1205         else if (offset == 0xF00053)
1206                 return tom_timer_divider & 0xFF;
1207
1208         return tom_ram_8[offset & 0x3FFF];
1209 }
1210
1211 //
1212 // TOM word access (read)
1213 //
1214 uint16 TOMReadWord(uint32 offset, uint32 who/*=UNKNOWN*/)
1215 {
1216 //???Is this needed???
1217 //      offset &= 0xFF3FFF;
1218 #ifdef TOM_DEBUG
1219         WriteLog("TOM: Reading word at %06X\n", offset);
1220 #endif
1221 if (offset >= 0xF02000 && offset <= 0xF020FF)
1222         WriteLog("TOM: Read attempted from GPU register file by %s (unimplemented)!\n", whoName[who]);
1223
1224         if (offset == 0xF000E0)
1225         {
1226                 uint16 data = (tom_jerry_int_pending << 4) | (tom_timer_int_pending << 3)
1227                         | (tom_object_int_pending << 2) | (tom_gpu_int_pending << 1)
1228                         | (tom_video_int_pending << 0);
1229                 //WriteLog("tom: interrupt status is 0x%.4x \n",data);
1230                 return data;
1231         }
1232 //Shoud be handled by the jaguar main loop now... And it is! ;-)
1233 /*      else if (offset == 0xF00006)    // VC
1234         // What if we're in interlaced mode?
1235         // According to docs, in non-interlace mode VC is ALWAYS even...
1236 //              return (tom_scanline << 1);// + 1;
1237 //But it's causing Rayman to be fucked up... Why???
1238 //Because VC is even in NI mode when calling the OP! That's why!
1239                 return (tom_scanline << 1) + 1;//*/
1240 /*
1241 //      F00004          R/W   -----xxx xxxxxxxx   HC - horizontal count
1242 //                            -----x-- --------      (which half of the display)
1243 //                            ------xx xxxxxxxx      (10-bit counter)
1244 */
1245 // This is a kludge to get the HC working somewhat... What we really should do here
1246 // is check what the global time is at the time of the read and calculate the correct HC...
1247 // !!! FIX !!!
1248         else if (offset == 0xF00004)
1249                 return rand() & 0x03FF;
1250         else if ((offset >= GPU_CONTROL_RAM_BASE) && (offset < GPU_CONTROL_RAM_BASE + 0x20))
1251                 return GPUReadWord(offset, who);
1252         else if ((offset >= GPU_WORK_RAM_BASE) && (offset < GPU_WORK_RAM_BASE + 0x1000))
1253                 return GPUReadWord(offset, who);
1254         else if ((offset >= 0xF00010) && (offset < 0xF00028))
1255                 return OPReadWord(offset, who);
1256         else if ((offset >= 0xF02200) && (offset < 0xF022A0))
1257                 return BlitterReadWord(offset, who);
1258         else if (offset == 0xF00050)
1259                 return tom_timer_prescaler;
1260         else if (offset == 0xF00052)
1261                 return tom_timer_divider;
1262
1263         offset &= 0x3FFF;
1264         return (TOMReadByte(offset, who) << 8) | TOMReadByte(offset + 1, who);
1265 }
1266
1267 //
1268 // TOM byte access (write)
1269 //
1270 void TOMWriteByte(uint32 offset, uint8 data, uint32 who/*=UNKNOWN*/)
1271 {
1272 //???Is this needed???
1273 // Perhaps on the writes--32-bit writes that is! And masked with FF7FFF...
1274         offset &= 0xFF3FFF;
1275
1276 #ifdef TOM_DEBUG
1277         WriteLog("TOM: Writing byte %02X at %06X\n", data, offset);
1278 #endif
1279
1280         if ((offset >= GPU_CONTROL_RAM_BASE) && (offset < GPU_CONTROL_RAM_BASE+0x20))
1281         {
1282                 GPUWriteByte(offset, data, who);
1283                 return;
1284         }
1285         else if ((offset >= GPU_WORK_RAM_BASE) && (offset < GPU_WORK_RAM_BASE+0x1000))
1286         {
1287                 GPUWriteByte(offset, data, who);
1288                 return;
1289         }
1290         else if ((offset >= 0xF00010) && (offset < 0xF00028))
1291         {
1292                 OPWriteByte(offset, data, who);
1293                 return;
1294         }
1295         else if ((offset >= 0xF02200) && (offset < 0xF022A0))
1296         {
1297                 BlitterWriteByte(offset, data, who);
1298                 return;
1299         }
1300         else if (offset == 0xF00050)
1301         {
1302                 tom_timer_prescaler = (tom_timer_prescaler & 0x00FF) | (data << 8);
1303                 TOMResetPIT();
1304                 return;
1305         }
1306         else if (offset == 0xF00051)
1307         {
1308                 tom_timer_prescaler = (tom_timer_prescaler & 0xFF00) | data;
1309                 TOMResetPIT();
1310                 return;
1311         }
1312         else if (offset == 0xF00052)
1313         {
1314                 tom_timer_divider = (tom_timer_divider & 0x00FF) | (data << 8);
1315                 TOMResetPIT();
1316                 return;
1317         }
1318         else if (offset == 0xF00053)
1319         {
1320                 tom_timer_divider = (tom_timer_divider & 0xFF00) | data;
1321                 TOMResetPIT();
1322                 return;
1323         }
1324         else if (offset >= 0xF00400 && offset <= 0xF007FF)      // CLUT (A & B)
1325         {
1326                 // Writing to one CLUT writes to the other
1327                 offset &= 0x5FF;                // Mask out $F00600 (restrict to $F00400-5FF)
1328                 tom_ram_8[offset] = data, tom_ram_8[offset + 0x200] = data;
1329         }
1330
1331         tom_ram_8[offset & 0x3FFF] = data;
1332 }
1333
1334 //
1335 // TOM word access (write)
1336 //
1337 void TOMWriteWord(uint32 offset, uint16 data, uint32 who/*=UNKNOWN*/)
1338 {
1339 //???Is this needed???
1340         offset &= 0xFF3FFF;
1341
1342 #ifdef TOM_DEBUG
1343         WriteLog("TOM: Writing word %04X at %06X\n", data, offset);
1344 #endif
1345 if (offset == 0xF00000 + MEMCON1)
1346         WriteLog("TOM: Memory Configuration 1 written by %s: %04X\n", whoName[who], data);
1347 if (offset == 0xF00000 + MEMCON2)
1348         WriteLog("TOM: Memory Configuration 2 written by %s: %04X\n", whoName[who], data);
1349 if (offset >= 0xF02000 && offset <= 0xF020FF)
1350         WriteLog("TOM: Write attempted to GPU register file by %s (unimplemented)!\n", whoName[who]);
1351
1352         if ((offset >= GPU_CONTROL_RAM_BASE) && (offset < GPU_CONTROL_RAM_BASE+0x20))
1353         {
1354                 GPUWriteWord(offset, data, who);
1355                 return;
1356         }
1357         else if ((offset >= GPU_WORK_RAM_BASE) && (offset < GPU_WORK_RAM_BASE+0x1000))
1358         {
1359                 GPUWriteWord(offset, data, who);
1360                 return;
1361         }
1362 //What's so special about this?
1363 /*      else if ((offset >= 0xF00000) && (offset < 0xF00002))
1364         {
1365                 TOMWriteByte(offset, data >> 8);
1366                 TOMWriteByte(offset+1, data & 0xFF);
1367         }*/
1368         else if ((offset >= 0xF00010) && (offset < 0xF00028))
1369         {
1370                 OPWriteWord(offset, data, who);
1371                 return;
1372         }
1373         else if (offset == 0xF00050)
1374         {
1375                 tom_timer_prescaler = data;
1376                 TOMResetPIT();
1377                 return;
1378         }
1379         else if (offset == 0xF00052)
1380         {
1381                 tom_timer_divider = data;
1382                 TOMResetPIT();
1383                 return;
1384         }
1385         else if (offset == 0xF000E0)
1386         {
1387 //Check this out...
1388                 if (data & 0x0100)
1389                         tom_video_int_pending = 0;
1390                 if (data & 0x0200)
1391                         tom_gpu_int_pending = 0;
1392                 if (data & 0x0400)
1393                         tom_object_int_pending = 0;
1394                 if (data & 0x0800)
1395                         tom_timer_int_pending = 0;
1396                 if (data & 0x1000)
1397                         tom_jerry_int_pending = 0;
1398         }
1399         else if ((offset >= 0xF02200) && (offset <= 0xF0229F))
1400         {
1401                 BlitterWriteWord(offset, data, who);
1402                 return;
1403         }
1404         else if (offset >= 0xF00400 && offset <= 0xF007FE)      // CLUT (A & B)
1405         {
1406                 // Writing to one CLUT writes to the other
1407                 offset &= 0x5FF;                // Mask out $F00600 (restrict to $F00400-5FF)
1408 // Watch out for unaligned writes here! (Not fixed yet)
1409                 SET16(tom_ram_8, offset, data);
1410                 SET16(tom_ram_8, offset + 0x200, data);
1411         }
1412
1413         offset &= 0x3FFF;
1414         if (offset == 0x28)                     // VMODE (Why? Why not OBF?)
1415                 objectp_running = 1;
1416
1417         if (offset >= 0x30 && offset <= 0x4E)
1418                 data &= 0x07FF;                 // These are (mostly) 11-bit registers
1419         if (offset == 0x2E || offset == 0x36 || offset == 0x54)
1420                 data &= 0x03FF;                 // These are all 10-bit registers
1421
1422         TOMWriteByte(offset, data >> 8, who);
1423         TOMWriteByte(offset+1, data & 0xFF, who);
1424
1425 if (offset == VDB)
1426         WriteLog("TOM: Vertical Display Begin written by %s: %u\n", whoName[who], data);
1427 if (offset == VDE)
1428         WriteLog("TOM: Vertical Display End written by %s: %u\n", whoName[who], data);
1429 if (offset == VP)
1430         WriteLog("TOM: Vertical Period written by %s: %u (%sinterlaced)\n", whoName[who], data, (data & 0x01 ? "non-" : ""));
1431 if (offset == HDB1)
1432         WriteLog("TOM: Horizontal Display Begin 1 written by %s: %u\n", whoName[who], data);
1433 if (offset == HDE)
1434         WriteLog("TOM: Horizontal Display End written by %s: %u\n", whoName[who], data);
1435 if (offset == HP)
1436         WriteLog("TOM: Horizontal Period written by %s: %u (+1*2 = %u)\n", whoName[who], data, (data + 1) * 2);
1437 if (offset == VBB)
1438         WriteLog("TOM: Vertical Blank Begin written by %s: %u\n", whoName[who], data);
1439 if (offset == VBE)
1440         WriteLog("TOM: Vertical Blank End written by %s: %u\n", whoName[who], data);
1441 if (offset == VS)
1442         WriteLog("TOM: Vertical Sync written by %s: %u\n", whoName[who], data);
1443 if (offset == VI)
1444         WriteLog("TOM: Vertical Interrupt written by %s: %u\n", whoName[who], data);
1445 if (offset == HBB)
1446         WriteLog("TOM: Horizontal Blank Begin written by %s: %u\n", whoName[who], data);
1447 if (offset == HBE)
1448         WriteLog("TOM: Horizontal Blank End written by %s: %u\n", whoName[who], data);
1449 if (offset == VMODE)
1450         WriteLog("TOM: Video Mode written by %s: %04X. PWIDTH = %u, MODE = %s, flags:%s%s (VC = %u)\n", whoName[who], data, ((data >> 9) & 0x07) + 1, videoMode_to_str[(data & MODE) >> 1], (data & BGEN ? " BGEN" : ""), (data & VARMOD ? " VARMOD" : ""), GET16(tom_ram_8, VC));
1451
1452         // detect screen resolution changes
1453 //This may go away in the future, if we do the virtualized screen thing...
1454 //This may go away soon!
1455         if ((offset >= 0x28) && (offset <= 0x4F))
1456         {
1457                 uint32 width = tom_getVideoModeWidth(), height = tom_getVideoModeHeight();
1458
1459                 if ((width != tom_width) || (height != tom_height))
1460                 {
1461                         tom_width = width, tom_height = height;
1462
1463                         if (vjs.renderType == RT_NORMAL)
1464                                 ResizeScreen(tom_width, tom_height);
1465                 }
1466         }
1467 }
1468
1469 int tom_irq_enabled(int irq)
1470 {
1471         // This is the correct byte in big endian... D'oh!
1472 //      return jaguar_byte_read(0xF000E1) & (1 << irq);
1473         return tom_ram_8[INT1 + 1/*0xE1*/] & (1 << irq);
1474 }
1475
1476 //unused
1477 /*void tom_set_irq_latch(int irq, int enabled)
1478 {
1479         tom_ram_8[0xE0] = (tom_ram_8[0xE0] & (~(1<<irq))) | (enabled ? (1<<irq) : 0);
1480 }*/
1481
1482 //unused
1483 /*uint16 tom_irq_control_reg(void)
1484 {
1485         return (tom_ram_8[0xE0] << 8) | tom_ram_8[0xE1];
1486 }*/
1487
1488 // NEW:
1489 // TOM Programmable Interrupt Timer handler
1490 // NOTE: TOM's PIT is only enabled if the prescaler is != 0
1491 //       The PIT only generates an interrupt when it counts down to zero, not when loaded!
1492
1493 void TOMPITCallback(void);
1494
1495 void TOMResetPIT(void)
1496 {
1497 #ifndef NEW_TIMER_SYSTEM
1498 //Probably should *add* this amount to the counter to retain cycle accuracy! !!! FIX !!! [DONE]
1499 //Also, why +1??? 'Cause that's what it says in the JTRM...!
1500 //There is a small problem with this approach: If both the prescaler and the divider are equal
1501 //to $FFFF then the counter won't be large enough to handle it. !!! FIX !!!
1502         if (tom_timer_prescaler)
1503                 tom_timer_counter += (1 + tom_timer_prescaler) * (1 + tom_timer_divider);
1504 //      WriteLog("tom: reseting timer to 0x%.8x (%i)\n",tom_timer_counter,tom_timer_counter);
1505 #else
1506         // Need to remove previous timer from the queue, if it exists...
1507         RemoveCallback(TOMPITCallback);
1508         
1509         if (tom_timer_prescaler)
1510         {
1511                 double usecs = (float)(tom_timer_prescaler + 1) * (float)(tom_timer_divider + 1) * RISC_CYCLE_IN_USEC;
1512                 SetCallbackTime(TOMPITCallback, usecs);
1513         }
1514 #endif
1515 }
1516
1517 //
1518 // TOM Programmable Interrupt Timer handler
1519 // NOTE: TOM's PIT is only enabled if the prescaler is != 0
1520 //
1521 //NOTE: This is only used by the old execution code... Safe to remove
1522 //      once the timer system is stable.
1523 void TOMExecPIT(uint32 cycles)
1524 {
1525         if (tom_timer_prescaler)
1526         {
1527                 tom_timer_counter -= cycles;
1528
1529                 if (tom_timer_counter <= 0)
1530                 {
1531                         tom_set_pending_timer_int();
1532                         GPUSetIRQLine(GPUIRQ_TIMER, ASSERT_LINE);       // GPUSetIRQLine does the 'IRQ enabled' checking
1533
1534                         if (tom_irq_enabled(IRQ_TIMER))
1535                                 m68k_set_irq(7);                                // Cause a 68000 NMI...
1536
1537                         TOMResetPIT();
1538                 }
1539         }
1540 }
1541
1542
1543 void TOMPITCallback(void)
1544 {
1545 //      INT1_RREG |= 0x08;                         // Set TOM PIT interrupt pending
1546         tom_set_pending_timer_int();
1547     GPUSetIRQLine(GPUIRQ_TIMER, ASSERT_LINE);  // It does the 'IRQ enabled' checking
1548
1549 //      if (INT1_WREG & 0x08)
1550         if (tom_irq_enabled(IRQ_TIMER))
1551                 m68k_set_irq(7);                       // Generate 68K NMI
1552
1553         TOMResetPIT();
1554 }