dc714e84eb00e64677be2e1d2b1610ae6dda35b9
[picodrive.git] / Pico / cd / Sek.c
1 // (c) Copyright 2007 notaz, All rights reserved.
2
3
4 #include "../PicoInt.h"
5
6
7 int SekCycleCntS68k=0; // cycles done in this frame
8 int SekCycleAimS68k=0; // cycle aim
9
10
11 /* context */
12 // Cyclone 68000
13 #ifdef EMU_C68K
14 struct Cyclone PicoCpuCS68k;
15 #endif
16 // MUSASHI 68000
17 #ifdef EMU_M68K
18 m68ki_cpu_core PicoCpuMS68k;
19 #endif
20 // FAME 68000
21 #ifdef EMU_F68K
22 M68K_CONTEXT PicoCpuFS68k;
23 #endif
24
25
26 static int new_irq_level(int level)
27 {
28   int level_new = 0, irqs;
29   Pico_mcd->m.s68k_pend_ints &= ~(1 << level);
30   irqs = Pico_mcd->m.s68k_pend_ints;
31   irqs &= Pico_mcd->s68k_regs[0x33];
32   while ((irqs >>= 1)) level_new++;
33
34   return level_new;
35 }
36
37 #ifdef EMU_C68K
38 // interrupt acknowledgement
39 static int SekIntAckS68k(int level)
40 {
41   int level_new = new_irq_level(level);
42
43   dprintf("s68kACK %i -> %i", level, level_new);
44   PicoCpuCS68k.irq = level_new;
45   return CYCLONE_INT_ACK_AUTOVECTOR;
46 }
47
48 static void SekResetAckS68k(void)
49 {
50   dprintf("s68k: Reset encountered @ %06x", SekPcS68k);
51 }
52
53 static int SekUnrecognizedOpcodeS68k(void)
54 {
55   unsigned int pc, op;
56   pc = SekPcS68k;
57   op = PicoCpuCS68k.read16(pc);
58   dprintf("Unrecognized Opcode %04x @ %06x", op, pc);
59   //exit(1);
60   return 0;
61 }
62 #endif
63
64 #ifdef EMU_M68K
65 static int SekIntAckMS68k(int level)
66 {
67   int level_new = new_irq_level(level);
68   dprintf("s68kACK %i -> %i", level, level_new);
69   CPU_INT_LEVEL = level_new << 8;
70   return M68K_INT_ACK_AUTOVECTOR;
71 }
72 #endif
73
74 #ifdef EMU_F68K
75 static void SekIntAckFS68k(unsigned level)
76 {
77   int level_new = new_irq_level(level);
78   dprintf("s68kACK %i -> %i", level, level_new);
79   PicoCpuFS68k.interrupts[0] = level_new;
80 }
81 #endif
82
83
84 PICO_INTERNAL int SekInitS68k()
85 {
86 #ifdef EMU_C68K
87 //  CycloneInit();
88   memset(&PicoCpuCS68k,0,sizeof(PicoCpuCS68k));
89   PicoCpuCS68k.IrqCallback=SekIntAckS68k;
90   PicoCpuCS68k.ResetCallback=SekResetAckS68k;
91   PicoCpuCS68k.UnrecognizedCallback=SekUnrecognizedOpcodeS68k;
92 #endif
93 #ifdef EMU_M68K
94   {
95     // Musashi is not very context friendly..
96     void *oldcontext = m68ki_cpu_p;
97     m68k_set_context(&PicoCpuMS68k);
98     m68k_set_cpu_type(M68K_CPU_TYPE_68000);
99     m68k_init();
100     m68k_set_int_ack_callback(SekIntAckMS68k);
101 //  m68k_pulse_reset(); // not yet, memmap is not set up
102     m68k_set_context(oldcontext);
103   }
104 #endif
105 #ifdef EMU_F68K
106   {
107     void *oldcontext = g_m68kcontext;
108     g_m68kcontext = &PicoCpuFS68k;
109     memset(&PicoCpuFS68k, 0, sizeof(PicoCpuFS68k));
110     fm68k_init();
111     PicoCpuFS68k.iack_handler = SekIntAckFS68k;
112     g_m68kcontext = oldcontext;
113   }
114 #endif
115
116   return 0;
117 }
118
119 // Reset the 68000:
120 PICO_INTERNAL int SekResetS68k()
121 {
122   if (Pico.rom==NULL) return 1;
123
124 #ifdef EMU_C68K
125   PicoCpuCS68k.state_flags=0;
126   PicoCpuCS68k.osp=0;
127   PicoCpuCS68k.srh =0x27; // Supervisor mode
128   PicoCpuCS68k.flags=4;   // Z set
129   PicoCpuCS68k.irq=0;
130   PicoCpuCS68k.a[7]=PicoCpuCS68k.read32(0); // Stack Pointer
131   PicoCpuCS68k.membase=0;
132   PicoCpuCS68k.pc=PicoCpuCS68k.checkpc(PicoCpuCS68k.read32(4)); // Program Counter
133 #endif
134 #ifdef EMU_M68K
135   {
136     void *oldcontext = m68ki_cpu_p;
137
138     m68k_set_context(&PicoCpuMS68k);
139     m68ki_cpu.sp[0]=0;
140     m68k_set_irq(0);
141     m68k_pulse_reset();
142     m68k_set_context(oldcontext);
143   }
144 #endif
145 #ifdef EMU_F68K
146   {
147     void *oldcontext = g_m68kcontext;
148     g_m68kcontext = &PicoCpuFS68k;
149     fm68k_reset();
150     g_m68kcontext = oldcontext;
151   }
152 #endif
153
154   return 0;
155 }
156
157 PICO_INTERNAL int SekInterruptS68k(int irq)
158 {
159   int irqs, real_irq = 1;
160   Pico_mcd->m.s68k_pend_ints |= 1 << irq;
161   irqs = Pico_mcd->m.s68k_pend_ints >> 1;
162   while ((irqs >>= 1)) real_irq++;
163
164 #ifdef EMU_C68K
165   PicoCpuCS68k.irq=real_irq;
166 #endif
167 #ifdef EMU_M68K
168   void *oldcontext = m68ki_cpu_p;
169   m68k_set_context(&PicoCpuMS68k);
170   m68k_set_irq(real_irq);
171   m68k_set_context(oldcontext);
172 #endif
173 #ifdef EMU_F68K
174   PicoCpuFS68k.interrupts[0]=real_irq;
175 #endif
176   return 0;
177 }
178