]> Shamusworld >> Repos - virtualjaguar/blob - src/m68000/m68kinterface.c
Fix to M68K core vs. DSP thread sync problem.
[virtualjaguar] / src / m68000 / m68kinterface.c
1 //
2 // m68kinterface.c: Code interface to the UAE 68000 core and support code
3 //
4 // by James Hammons
5 // (C) 2011 Underground Software
6 //
7 // JLH = James Hammons <jlhamm@acm.org>
8 //
9 // Who  When        What
10 // ---  ----------  -------------------------------------------------------------
11 // JLH  10/28/2011  Created this file ;-)
12 //
13
14 #include "m68kinterface.h"
15 //#include <pthread.h>
16 #include "cpudefs.h"
17 #include "inlines.h"
18 #include "cpuextra.h"
19 #include "readcpu.h"
20
21 // Exception Vectors handled by emulation
22 #define EXCEPTION_BUS_ERROR                2 /* This one is not emulated! */
23 #define EXCEPTION_ADDRESS_ERROR            3 /* This one is partially emulated (doesn't stack a proper frame yet) */
24 #define EXCEPTION_ILLEGAL_INSTRUCTION      4
25 #define EXCEPTION_ZERO_DIVIDE              5
26 #define EXCEPTION_CHK                      6
27 #define EXCEPTION_TRAPV                    7
28 #define EXCEPTION_PRIVILEGE_VIOLATION      8
29 #define EXCEPTION_TRACE                    9
30 #define EXCEPTION_1010                    10
31 #define EXCEPTION_1111                    11
32 #define EXCEPTION_FORMAT_ERROR            14
33 #define EXCEPTION_UNINITIALIZED_INTERRUPT 15
34 #define EXCEPTION_SPURIOUS_INTERRUPT      24
35 #define EXCEPTION_INTERRUPT_AUTOVECTOR    24
36 #define EXCEPTION_TRAP_BASE               32
37
38 // These are found in obj/cpustbl.c (generated by gencpu)
39
40 //extern const struct cputbl op_smalltbl_0_ff[];        /* 68040 */
41 //extern const struct cputbl op_smalltbl_1_ff[];        /* 68020 + 68881 */
42 //extern const struct cputbl op_smalltbl_2_ff[];        /* 68020 */
43 //extern const struct cputbl op_smalltbl_3_ff[];        /* 68010 */
44 extern const struct cputbl op_smalltbl_4_ff[];  /* 68000 */
45 extern const struct cputbl op_smalltbl_5_ff[];  /* 68000 slow but compatible.  */
46
47 // Externs, supplied by the user...
48 //extern int irq_ack_handler(int);
49
50 // Function prototypes...
51 STATIC_INLINE void m68ki_check_interrupts(void);
52 void m68ki_exception_interrupt(uint32_t intLevel);
53 STATIC_INLINE uint32_t m68ki_init_exception(void);
54 STATIC_INLINE void m68ki_stack_frame_3word(uint32_t pc, uint32_t sr);
55 unsigned long IllegalOpcode(uint32_t opcode);
56 void BuildCPUFunctionTable(void);
57 void m68k_set_irq2(unsigned int intLevel);
58
59 // Local "Global" vars
60 static int32_t initialCycles;
61 cpuop_func * cpuFunctionTable[65536];
62
63 // By virtue of the fact that m68k_set_irq() can be called asychronously by
64 // another thread, we need something along the lines of this:
65 static int checkForIRQToHandle = 0;
66 //static pthread_mutex_t executionLock = PTHREAD_MUTEX_INITIALIZER;
67 static int IRQLevelToHandle = 0;
68
69 #if 0
70 #define ADD_CYCLES(A)    m68ki_remaining_cycles += (A)
71 #define USE_CYCLES(A)    m68ki_remaining_cycles -= (A)
72 #define SET_CYCLES(A)    m68ki_remaining_cycles = A
73 #define GET_CYCLES()     m68ki_remaining_cycles
74 #define USE_ALL_CYCLES() m68ki_remaining_cycles = 0
75
76 #define CPU_INT_LEVEL    m68ki_cpu.int_level /* ASG: changed from CPU_INTS_PENDING */
77 #define CPU_INT_CYCLES   m68ki_cpu.int_cycles /* ASG */
78 #define CPU_STOPPED      m68ki_cpu.stopped
79 #define CPU_PREF_ADDR    m68ki_cpu.pref_addr
80 #define CPU_PREF_DATA    m68ki_cpu.pref_data
81 #define CPU_ADDRESS_MASK m68ki_cpu.address_mask
82 #define CPU_SR_MASK      m68ki_cpu.sr_mask
83 #endif
84
85 #define CPU_DEBUG
86
87
88 void Dasm(uint32_t offset, uint32_t qt)
89 {
90 #ifdef CPU_DEBUG
91 // back up a few instructions...
92 //offset -= 100;
93         static char buffer[2048];//, mem[64];
94         int pc = offset, oldpc;
95         uint32_t i;
96
97         for(i=0; i<qt; i++)
98         {
99 /*              oldpc = pc;
100                 for(int j=0; j<64; j++)
101                         mem[j^0x01] = jaguar_byte_read(pc + j);
102
103                 pc += Dasm68000((char *)mem, buffer, 0);
104                 WriteLog("%08X: %s\n", oldpc, buffer);//*/
105                 oldpc = pc;
106                 pc += m68k_disassemble(buffer, pc, 0);//M68K_CPU_TYPE_68000);
107 //              WriteLog("%08X: %s\n", oldpc, buffer);//*/
108                 printf("%08X: %s\n", oldpc, buffer);//*/
109         }
110 #endif
111 }
112
113
114 #ifdef CPU_DEBUG
115 void DumpRegisters(void)
116 {
117         uint32_t i;
118
119         for(i=0; i<16; i++)
120         {
121                 printf("%s%i: %08X ", (i < 8 ? "D" : "A"), i & 0x7, regs.regs[i]);
122
123                 if ((i & 0x03) == 3)
124                         printf("\n");
125         }
126 }
127 #endif
128
129
130 void m68k_set_cpu_type(unsigned int type)
131 {
132 }
133
134
135 // Pulse the RESET line on the CPU
136 void m68k_pulse_reset(void)
137 {
138         static uint32_t emulation_initialized = 0;
139
140         // The first call to this function initializes the opcode handler jump table
141         if (!emulation_initialized)
142         {
143 #if 0
144                 m68ki_build_opcode_table();
145                 m68k_set_int_ack_callback(NULL);
146                 m68k_set_bkpt_ack_callback(NULL);
147                 m68k_set_reset_instr_callback(NULL);
148                 m68k_set_pc_changed_callback(NULL);
149                 m68k_set_fc_callback(NULL);
150                 m68k_set_instr_hook_callback(NULL);
151 #else
152                 // Build opcode handler table here...
153                 read_table68k();
154                 do_merges();
155                 BuildCPUFunctionTable();
156 #endif
157                 emulation_initialized = 1;
158         }
159
160 //      if (CPU_TYPE == 0)      /* KW 990319 */
161 //              m68k_set_cpu_type(M68K_CPU_TYPE_68000);
162
163 #if 0
164         /* Clear all stop levels and eat up all remaining cycles */
165         CPU_STOPPED = 0;
166         SET_CYCLES(0);
167
168         /* Turn off tracing */
169         FLAG_T1 = FLAG_T0 = 0;
170         m68ki_clear_trace();
171         /* Interrupt mask to level 7 */
172         FLAG_INT_MASK = 0x0700;
173         /* Reset VBR */
174         REG_VBR = 0;
175         /* Go to supervisor mode */
176         m68ki_set_sm_flag(SFLAG_SET | MFLAG_CLEAR);
177
178         /* Invalidate the prefetch queue */
179 #if M68K_EMULATE_PREFETCH
180         /* Set to arbitrary number since our first fetch is from 0 */
181         CPU_PREF_ADDR = 0x1000;
182 #endif /* M68K_EMULATE_PREFETCH */
183
184         /* Read the initial stack pointer and program counter */
185         m68ki_jump(0);
186         REG_SP = m68ki_read_imm_32();
187         REG_PC = m68ki_read_imm_32();
188         m68ki_jump(REG_PC);
189 #else
190         regs.stopped = 0;
191         regs.remainingCycles = 0;
192         
193         regs.intmask = 0x07;
194         regs.s = 1;                                                             // Supervisor mode ON
195
196         // Read initial SP and PC
197         m68k_areg(regs, 7) = m68k_read_memory_32(0);
198         m68k_setpc(m68k_read_memory_32(4));
199         refill_prefetch(m68k_getpc(), 0);
200 #endif
201 }
202
203
204 int m68k_execute(int num_cycles)
205 {
206 #if 0
207         /* Make sure we're not stopped */
208         if (CPU_STOPPED)
209         {
210                 /* We get here if the CPU is stopped or halted */
211                 SET_CYCLES(0);
212                 CPU_INT_CYCLES = 0;
213
214                 return num_cycles;
215         }
216 #else
217         if (regs.stopped)
218         {
219                 regs.remainingCycles = 0;       // int32_t
220                 regs.interruptCycles = 0;       // uint32_t
221
222                 return num_cycles;
223         }
224 #endif
225
226 #if 0
227         /* Set our pool of clock cycles available */
228         SET_CYCLES(num_cycles);
229         m68ki_initial_cycles = num_cycles;
230
231         /* ASG: update cycles */
232         USE_CYCLES(CPU_INT_CYCLES);
233         CPU_INT_CYCLES = 0;
234
235         /* Return point if we had an address error */
236         m68ki_set_address_error_trap(); /* auto-disable (see m68kcpu.h) */
237 #else
238         regs.remainingCycles = num_cycles;
239         /*int32_t*/ initialCycles = num_cycles;
240         
241         regs.remainingCycles -= regs.interruptCycles;
242         regs.interruptCycles = 0;
243 #endif
244
245         /* Main loop.  Keep going until we run out of clock cycles */
246         do
247         {
248 #if 0
249                 /* Set tracing accodring to T1. (T0 is done inside instruction) */
250                 m68ki_trace_t1(); /* auto-disable (see m68kcpu.h) */
251
252                 /* Set the address space for reads */
253                 m68ki_use_data_space(); /* auto-disable (see m68kcpu.h) */
254
255                 /* Call external hook to peek at CPU */
256                 m68ki_instr_hook(); /* auto-disable (see m68kcpu.h) */
257
258                 /* Record previous program counter */
259                 REG_PPC = REG_PC;
260
261                 /* Read an instruction and call its handler */
262                 REG_IR = m68ki_read_imm_16();
263                 m68ki_instruction_jump_table[REG_IR]();
264                 USE_CYCLES(CYC_INSTRUCTION[REG_IR]);
265
266                 /* Trace m68k_exception, if necessary */
267                 m68ki_exception_if_trace(); /* auto-disable (see m68kcpu.h) */
268 #else
269 //Testing Hover Strike...
270 #if 0
271 //Dasm(regs.pc, 1);
272 static int hitCount = 0;
273 static int inRoutine = 0;
274 static int instSeen;
275
276 //if (regs.pc == 0x80340A)
277 if (regs.pc == 0x803416)
278 {
279         hitCount++;
280         inRoutine = 1;
281         instSeen = 0;
282         printf("%i: $80340A start. A0=%08X, A1=%08X ", hitCount, regs.regs[8], regs.regs[9]);
283 }
284 else if (regs.pc == 0x803422)
285 {
286         inRoutine = 0;
287         printf("(%i instructions)\n", instSeen);
288 }
289
290 if (inRoutine)
291         instSeen++;
292 #endif
293 // AvP testing... (problem was: 32 bit addresses on 24 bit address cpu--FIXED)
294 #if 0
295         static int go = 0;
296
297         if (regs.pc == 0x94BA)
298         {
299                 go = 1;
300                 printf("\n");
301         }
302
303         if (regs.pc == 0x94C6)
304                 go = 0;
305
306 //      if (regs.regs[10] == 0xFFFFFFFF && go)
307         if (go)
308         {
309 //              printf("A2=-1, PC=%08X\n", regs.pc);
310 //              go = 0;
311 //              Dasm(regs.pc, 130);
312                 Dasm(regs.pc, 1);
313                 DumpRegisters();
314         }
315 //94BA: 2468 0000                MOVEA.L        (A0,$0000) == $0002328A, A2
316 //94BE: 200A                     MOVE.L A2, D0
317 //94C0: 6A02                     BPL.B  $94C4
318 //94C2: 2452                     MOVEA.L        (A2), A2                        ; <--- HERE
319 //94C4: 4283                     CLR.L  D3
320 #endif
321 //              pthread_mutex_lock(&executionLock);
322                 if (checkForIRQToHandle)
323                 {
324                         checkForIRQToHandle = 0;
325                         m68k_set_irq2(IRQLevelToHandle);
326                 }
327
328 #ifdef M68K_HOOK_FUNCTION
329                 M68KInstructionHook();
330 #endif
331                 uint32_t opcode = get_iword(0);
332 //if ((opcode & 0xFFF8) == 0x31C0)
333 //{
334 //      printf("MOVE.W D%i, EA\n", opcode & 0x07);
335 //}
336                 int32_t cycles = (int32_t)(*cpuFunctionTable[opcode])(opcode);
337                 regs.remainingCycles -= cycles;
338 //              pthread_mutex_unlock(&executionLock);
339
340 //printf("Executed opcode $%04X (%i cycles)...\n", opcode, cycles);
341 #endif
342         }
343         while (regs.remainingCycles > 0);
344
345 #if 0
346         /* set previous PC to current PC for the next entry into the loop */
347         REG_PPC = REG_PC;
348
349         /* ASG: update cycles */
350         USE_CYCLES(CPU_INT_CYCLES);
351         CPU_INT_CYCLES = 0;
352
353         /* return how many clocks we used */
354         return m68ki_initial_cycles - GET_CYCLES();
355 #else
356         regs.remainingCycles -= regs.interruptCycles;
357         regs.interruptCycles = 0;
358
359         // Return # of clock cycles used
360         return initialCycles - regs.remainingCycles;
361 #endif
362 }
363
364
365 void m68k_set_irq(unsigned int intLevel)
366 {
367         // Since this can be called asynchronously, we need to fix it so that it
368         // doesn't fuck up the main execution loop.
369         IRQLevelToHandle = intLevel;
370         checkForIRQToHandle = 1;
371 }
372
373
374 /* ASG: rewrote so that the int_level is a mask of the IPL0/IPL1/IPL2 bits */
375 void m68k_set_irq2(unsigned int intLevel)
376 {
377 //      pthread_mutex_lock(&executionLock);
378 //              printf("m68k_set_irq: Could not get the lock!!!\n");
379
380         int oldLevel = regs.intLevel;
381         regs.intLevel = intLevel;
382
383         // A transition from < 7 to 7 always interrupts (NMI)
384         // Note: Level 7 can also level trigger like a normal IRQ
385         if (oldLevel != 0x07 && regs.intLevel == 0x07)
386                 m68ki_exception_interrupt(7);           // Edge triggered level 7 (NMI)
387         else
388                 m68ki_check_interrupts();                       // Level triggered (IRQ)
389
390 //      pthread_mutex_unlock(&executionLock);
391 }
392
393
394 // Check for interrupts
395 STATIC_INLINE void m68ki_check_interrupts(void)
396 {
397 #if 0
398         if(CPU_INT_LEVEL > FLAG_INT_MASK)
399                 m68ki_exception_interrupt(CPU_INT_LEVEL>>8);
400 #else
401         if (regs.intLevel > regs.intmask)
402                 m68ki_exception_interrupt(regs.intLevel);
403 #endif
404 }
405
406
407 // Service an interrupt request and start exception processing
408 void m68ki_exception_interrupt(uint32_t intLevel)
409 {
410 #if 0
411         uint vector;
412         uint sr;
413         uint new_pc;
414
415         /* Turn off the stopped state */
416         CPU_STOPPED &= ~STOP_LEVEL_STOP;
417
418         /* If we are halted, don't do anything */
419         if(CPU_STOPPED)
420                 return;
421
422         /* Acknowledge the interrupt */
423         vector = m68ki_int_ack(int_level);
424
425         /* Get the interrupt vector */
426         if(vector == M68K_INT_ACK_AUTOVECTOR)
427                 /* Use the autovectors.  This is the most commonly used implementation */
428                 vector = EXCEPTION_INTERRUPT_AUTOVECTOR+int_level;
429         else if(vector == M68K_INT_ACK_SPURIOUS)
430                 /* Called if no devices respond to the interrupt acknowledge */
431                 vector = EXCEPTION_SPURIOUS_INTERRUPT;
432         else if(vector > 255)
433         {
434                 M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: Interrupt acknowledge returned invalid vector $%x\n",
435                          m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PC), vector));
436                 return;
437         }
438
439         /* Start exception processing */
440         sr = m68ki_init_exception();
441
442         /* Set the interrupt mask to the level of the one being serviced */
443         FLAG_INT_MASK = int_level<<8;
444
445         /* Get the new PC */
446         new_pc = m68ki_read_data_32((vector<<2) + REG_VBR);
447
448         /* If vector is uninitialized, call the uninitialized interrupt vector */
449         if(new_pc == 0)
450                 new_pc = m68ki_read_data_32((EXCEPTION_UNINITIALIZED_INTERRUPT<<2) + REG_VBR);
451
452         /* Generate a stack frame */
453         m68ki_stack_frame_0000(REG_PC, sr, vector);
454
455         if(FLAG_M && CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
456         {
457                 /* Create throwaway frame */
458                 m68ki_set_sm_flag(FLAG_S);      /* clear M */
459                 sr |= 0x2000; /* Same as SR in master stack frame except S is forced high */
460                 m68ki_stack_frame_0001(REG_PC, sr, vector);
461         }
462
463         m68ki_jump(new_pc);
464
465         /* Defer cycle counting until later */
466         CPU_INT_CYCLES += CYC_EXCEPTION[vector];
467
468 #if !M68K_EMULATE_INT_ACK
469         /* Automatically clear IRQ if we are not using an acknowledge scheme */
470         CPU_INT_LEVEL = 0;
471 #endif /* M68K_EMULATE_INT_ACK */
472 #else
473         // Turn off the stopped state
474         regs.stopped = 0;
475
476 //JLH: need to add halt state?
477         // If we are halted, don't do anything
478 //      if (CPU_STOPPED)
479 //              return;
480
481         // Acknowledge the interrupt (NOTE: This is a user supplied function!)
482         uint32_t vector = irq_ack_handler(intLevel);
483
484         // Get the interrupt vector
485         if (vector == M68K_INT_ACK_AUTOVECTOR)
486                 // Use the autovectors.  This is the most commonly used implementation
487                 vector = EXCEPTION_INTERRUPT_AUTOVECTOR + intLevel;
488         else if (vector == M68K_INT_ACK_SPURIOUS)
489                 // Called if no devices respond to the interrupt acknowledge
490                 vector = EXCEPTION_SPURIOUS_INTERRUPT;
491         else if (vector > 255)
492         {
493 //              M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: Interrupt acknowledge returned invalid vector $%x\n",
494 //                       m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PC), vector));
495                 return;
496         }
497
498         // Start exception processing
499         uint32_t sr = m68ki_init_exception();
500
501         // Set the interrupt mask to the level of the one being serviced
502         regs.intmask = intLevel;
503
504 #if 0
505 extern int startM68KTracing;
506 if (startM68KTracing)
507 {
508         printf("IRQ: old PC=%06X, ", regs.pc);
509 }
510 #endif
511
512         // Get the new PC
513         uint32_t newPC = m68k_read_memory_32(vector << 2);
514
515 #if 0
516 if (startM68KTracing)
517 {
518         printf("new PC=%06X, vector=%u, ", newPC, vector);
519 }
520 #endif
521
522         // If vector is uninitialized, call the uninitialized interrupt vector
523         if (newPC == 0)
524                 newPC = m68k_read_memory_32(EXCEPTION_UNINITIALIZED_INTERRUPT << 2);
525
526         // Generate a stack frame
527         m68ki_stack_frame_3word(regs.pc, sr);
528
529         m68k_setpc(newPC);
530 #if 0
531 if (startM68KTracing)
532 {
533         printf("(PC=%06X)\n", regs.pc);
534 }
535 #endif
536
537         // Defer cycle counting until later
538         regs.interruptCycles += 56;     // NOT ACCURATE-- !!! FIX !!!
539 //      CPU_INT_CYCLES += CYC_EXCEPTION[vector];
540 #endif
541 }
542
543
544 // Initiate exception processing
545 STATIC_INLINE uint32_t m68ki_init_exception(void)
546 {
547 #if 0
548         /* Save the old status register */
549         uint sr = m68ki_get_sr();
550
551         /* Turn off trace flag, clear pending traces */
552         FLAG_T1 = FLAG_T0 = 0;
553         m68ki_clear_trace();
554         /* Enter supervisor mode */
555         m68ki_set_s_flag(SFLAG_SET);
556
557         return sr;
558 #else
559         MakeSR();
560         uint32_t sr = regs.sr;                                  // Save old status register
561         regs.s = 1;                                                             // Set supervisor mode
562
563         return sr;
564 #endif
565 }
566
567
568 // 3 word stack frame (68000 only)
569 STATIC_INLINE void m68ki_stack_frame_3word(uint32_t pc, uint32_t sr)
570 {
571 #if 0
572         m68ki_push_32(pc);
573         m68ki_push_16(sr);
574 #else
575         // Push PC on stack:
576         m68k_areg(regs, 7) -= 4;
577         m68k_write_memory_32(m68k_areg(regs, 7), pc);
578         // Push SR on stack:
579         m68k_areg(regs, 7) -= 2;
580         m68k_write_memory_16(m68k_areg(regs, 7), sr);
581 #endif
582 }
583
584
585 unsigned int m68k_get_reg(void * context, m68k_register_t reg)
586 {
587         if (reg <= M68K_REG_A7)
588                 return regs.regs[reg];
589         else if (reg == M68K_REG_PC)
590                 return regs.pc;
591         else if (reg == M68K_REG_SR)
592         {
593                 MakeSR();
594                 return regs.sr;
595         }
596         else if (reg == M68K_REG_SP)
597                 return regs.regs[15];
598
599         return 0;
600 }
601
602
603 void m68k_set_reg(m68k_register_t reg, unsigned int value)
604 {
605         if (reg <= M68K_REG_A7)
606                 regs.regs[reg] = value;
607         else if (reg == M68K_REG_PC)
608                 regs.pc = value;
609         else if (reg == M68K_REG_SR)
610         {
611                 regs.sr = value;
612                 MakeFromSR();
613         }
614         else if (reg == M68K_REG_SP)
615                 regs.regs[15] = value;
616 }
617
618
619 //
620 // Check if the instruction is a valid one
621 //
622 unsigned int m68k_is_valid_instruction(unsigned int instruction, unsigned int cpu_type)
623 {
624         instruction &= 0xFFFF;
625
626         if (cpuFunctionTable[instruction] == IllegalOpcode)
627                 return 0;
628
629         return 1;
630 }
631
632
633 // Dummy functions, for now, until we prove the concept here. :-)
634
635 // Temp, while we're using the Musashi disassembler...
636 #if 0
637 unsigned int m68k_disassemble(char * str_buff, unsigned int pc, unsigned int cpu_type)
638 {
639         return 0;
640 }
641 #endif
642
643 int m68k_cycles_run(void) {}              /* Number of cycles run so far */
644 int m68k_cycles_remaining(void) {}        /* Number of cycles left */
645 //void m68k_modify_timeslice(int cycles) {} /* Modify cycles left */
646 //void m68k_end_timeslice(void) {}          /* End timeslice now */
647
648
649 void m68k_modify_timeslice(int cycles)
650 {
651         regs.remainingCycles = cycles;
652 }
653
654
655 void m68k_end_timeslice(void)
656 {
657 #if 0
658         m68ki_initial_cycles = GET_CYCLES();
659         SET_CYCLES(0);
660 #else
661         initialCycles = regs.remainingCycles;
662         regs.remainingCycles = 0;
663 #endif
664 }
665
666
667 unsigned long IllegalOpcode(uint32_t opcode)
668 {
669 #if 0
670         uint32_t pc = m68k_getpc ();
671 #endif
672         if ((opcode & 0xF000) == 0xF000)
673         {
674                 Exception(0x0B, 0, M68000_EXC_SRC_CPU); // LineF exception...
675                 return 4;
676         }
677         else if ((opcode & 0xF000) == 0xA000)
678         {
679                 Exception(0x0A, 0, M68000_EXC_SRC_CPU); // LineA exception...
680                 return 4;
681         }
682
683 #if 0
684         write_log ("Illegal instruction: %04x at %08lx\n", opcode, (long)pc);
685 #endif
686
687         Exception(0x04, 0, M68000_EXC_SRC_CPU);         // Illegal opcode exception...
688         return 4;
689 }
690
691
692 void BuildCPUFunctionTable(void)
693 {
694         int i;
695         unsigned long opcode;
696
697         // We're only using the "fast" 68000 emulation here, not the "compatible"
698         // ("fast" doesn't throw exceptions, so we're using "compatible" now :-P)
699 #if 0
700         const struct cputbl * tbl = (currprefs.cpu_compatible
701                 ? op_smalltbl_5_ff : op_smalltbl_4_ff);
702 #else
703 //let's try "compatible" and see what happens here...
704 //      const struct cputbl * tbl = op_smalltbl_4_ff;
705         const struct cputbl * tbl = op_smalltbl_5_ff;
706 #endif
707
708 //      Log_Printf(LOG_DEBUG, "Building CPU function table (%d %d %d).\n",
709 //              currprefs.cpu_level, currprefs.cpu_compatible, currprefs.address_space_24);
710
711         // Set all instructions to Illegal...
712         for(opcode=0; opcode<65536; opcode++)
713                 cpuFunctionTable[opcode] = IllegalOpcode;
714
715         // Move functions from compact table into our full function table...
716         for(i=0; tbl[i].handler!=NULL; i++)
717                 cpuFunctionTable[tbl[i].opcode] = tbl[i].handler;
718
719 //JLH: According to readcpu.c, handler is set to -1 and never changes.
720 // Actually, it does read this crap in readcpu.c, do_merges() does it... :-P
721 // Again, seems like a build time thing could be done here...
722 #if 1
723         for(opcode=0; opcode<65536; opcode++)
724         {
725 //              if (table68k[opcode].mnemo == i_ILLG || table68k[opcode].clev > currprefs.cpu_level)
726                 if (table68k[opcode].mnemo == i_ILLG || table68k[opcode].clev > 0)
727                         continue;
728
729                 if (table68k[opcode].handler != -1)
730                 {
731 //printf("Relocate: $%04X->$%04X\n", table68k[opcode].handler, opcode);
732                         cpuop_func * f = cpuFunctionTable[table68k[opcode].handler];
733
734                         if (f == IllegalOpcode)
735                                 abort();
736
737                         cpuFunctionTable[opcode] = f;
738                 }
739         }
740 #endif
741 }