improve input handling
[picodrive.git] / pico / 32x / 32x.c
CommitLineData
cff531af 1/*
2 * PicoDrive
6a98f03e 3 * (C) notaz, 2009,2010,2013
cff531af 4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
be2c4208 8#include "../pico_int.h"
974fdb5b 9#include "../sound/ym2612.h"
51d86e55 10#include "../../cpu/sh2/compiler.h"
be2c4208 11
12struct Pico32x Pico32x;
83ff19ec 13SH2 sh2s[2];
be2c4208 14
19886062 15#define SH2_IDLE_STATES (SH2_STATE_CPOLL|SH2_STATE_VPOLL|SH2_STATE_SLEEP)
16
e05b81fc 17static int REGPARM(2) sh2_irq_cb(SH2 *sh2, int level)
4ea707e1 18{
e05b81fc 19 if (sh2->pending_irl > sh2->pending_int_irq) {
f8675e28 20 elprintf_sh2(sh2, EL_32X, "ack/irl %d @ %08x",
21 level, sh2_pc(sh2));
e05b81fc 22 return 64 + sh2->pending_irl / 2;
23 } else {
f8675e28 24 elprintf_sh2(sh2, EL_32X, "ack/int %d/%d @ %08x",
25 level, sh2->pending_int_vector, sh2_pc(sh2));
e05b81fc 26 sh2->pending_int_irq = 0; // auto-clear
27 sh2->pending_level = sh2->pending_irl;
28 return sh2->pending_int_vector;
29 }
4ea707e1 30}
31
c1931173 32// MUST specify active_sh2 when called from sh2 memhandlers
4d5dfee8 33void p32x_update_irls(SH2 *active_sh2, int m68k_cycles)
4ea707e1 34{
35 int irqs, mlvl = 0, slvl = 0;
a8fd6e37 36 int mrun, srun;
4ea707e1 37
19886062 38 if (active_sh2 != NULL)
39 m68k_cycles = sh2_cycles_done_m68k(active_sh2);
40
4ea707e1 41 // msh2
42 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[0]) & ((Pico32x.sh2irq_mask[0] << 3) | P32XI_VRES);
43 while ((irqs >>= 1))
44 mlvl++;
45 mlvl *= 2;
46
47 // ssh2
48 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[1]) & ((Pico32x.sh2irq_mask[1] << 3) | P32XI_VRES);
49 while ((irqs >>= 1))
50 slvl++;
51 slvl *= 2;
52
c1931173 53 mrun = sh2_irl_irq(&msh2, mlvl, active_sh2 == &msh2);
54 if (mrun) {
19886062 55 p32x_sh2_poll_event(&msh2, SH2_IDLE_STATES, m68k_cycles);
c1931173 56 if (active_sh2 == &msh2)
57 sh2_end_run(active_sh2, 1);
58 }
19886062 59
c1931173 60 srun = sh2_irl_irq(&ssh2, slvl, active_sh2 == &ssh2);
61 if (srun) {
19886062 62 p32x_sh2_poll_event(&ssh2, SH2_IDLE_STATES, m68k_cycles);
c1931173 63 if (active_sh2 == &ssh2)
64 sh2_end_run(active_sh2, 1);
65 }
19886062 66
a8fd6e37 67 elprintf(EL_32X, "update_irls: m %d/%d, s %d/%d", mlvl, mrun, slvl, srun);
4ea707e1 68}
69
be2c4208 70void Pico32xStartup(void)
71{
72 elprintf(EL_STATUS|EL_32X, "32X startup");
73
679af8a3 74 // TODO: OOM handling
be2c4208 75 PicoAHW |= PAHW_32X;
f81107f5 76 sh2_init(&msh2, 0, &ssh2);
4ea707e1 77 msh2.irq_callback = sh2_irq_cb;
f81107f5 78 sh2_init(&ssh2, 1, &msh2);
4ea707e1 79 ssh2.irq_callback = sh2_irq_cb;
83ff19ec 80
81 PicoMemSetup32x();
045a4c52 82 p32x_pwm_ctl_changed();
a8fd6e37 83 p32x_timers_recalc();
acd35d4c 84
be2c4208 85 if (!Pico.m.pal)
974fdb5b 86 Pico32x.vdp_regs[0] |= P32XV_nPAL;
be2c4208 87
2446536b 88 rendstatus_old = -1;
89
974fdb5b 90 emu_32x_startup();
be2c4208 91}
92
83ff19ec 93#define HWSWAP(x) (((x) << 16) | ((x) >> 16))
94void p32x_reset_sh2s(void)
95{
96 elprintf(EL_32X, "sh2 reset");
97
98 sh2_reset(&msh2);
99 sh2_reset(&ssh2);
cd0ace28 100 sh2_peripheral_reset(&msh2);
101 sh2_peripheral_reset(&ssh2);
83ff19ec 102
103 // if we don't have BIOS set, perform it's work here.
104 // MSH2
105 if (p32x_bios_m == NULL) {
106 unsigned int idl_src, idl_dst, idl_size; // initial data load
107 unsigned int vbr;
108
109 // initial data
110 idl_src = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d4)) & ~0xf0000000;
111 idl_dst = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d8)) & ~0xf0000000;
112 idl_size= HWSWAP(*(unsigned int *)(Pico.rom + 0x3dc));
113 if (idl_size > Pico.romsize || idl_src + idl_size > Pico.romsize ||
114 idl_size > 0x40000 || idl_dst + idl_size > 0x40000 || (idl_src & 3) || (idl_dst & 3)) {
115 elprintf(EL_STATUS|EL_ANOMALY, "32x: invalid initial data ptrs: %06x -> %06x, %06x",
116 idl_src, idl_dst, idl_size);
117 }
118 else
119 memcpy(Pico32xMem->sdram + idl_dst, Pico.rom + idl_src, idl_size);
120
121 // GBR/VBR
122 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3e8));
123 sh2_set_gbr(0, 0x20004000);
124 sh2_set_vbr(0, vbr);
125
126 // checksum and M_OK
127 Pico32x.regs[0x28 / 2] = *(unsigned short *)(Pico.rom + 0x18e);
128 // program will set M_OK
129 }
130
131 // SSH2
132 if (p32x_bios_s == NULL) {
133 unsigned int vbr;
134
135 // GBR/VBR
136 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3ec));
137 sh2_set_gbr(1, 0x20004000);
138 sh2_set_vbr(1, vbr);
139 // program will set S_OK
140 }
ed4402a7 141
142 msh2.m68krcycles_done = ssh2.m68krcycles_done = SekCyclesDoneT();
83ff19ec 143}
144
be2c4208 145void Pico32xInit(void)
146{
ed4402a7 147 if (msh2.mult_m68k_to_sh2 == 0 || msh2.mult_sh2_to_m68k == 0)
148 Pico32xSetClocks(PICO_MSH2_HZ, 0);
149 if (ssh2.mult_m68k_to_sh2 == 0 || ssh2.mult_sh2_to_m68k == 0)
150 Pico32xSetClocks(0, PICO_MSH2_HZ);
974fdb5b 151}
152
153void PicoPower32x(void)
154{
155 memset(&Pico32x, 0, sizeof(Pico32x));
5e49c3a8 156
83ff19ec 157 Pico32x.regs[0] = P32XS_REN|P32XS_nRES; // verified
4a1fb183 158 Pico32x.vdp_regs[0x0a/2] = P32XV_VBLK|P32XV_PEN;
87accdf7 159 Pico32x.sh2_regs[0] = P32XS2_ADEN;
be2c4208 160}
161
5e49c3a8 162void PicoUnload32x(void)
163{
164 if (Pico32xMem != NULL)
b081408f 165 plat_munmap(Pico32xMem, sizeof(*Pico32xMem));
5e49c3a8 166 Pico32xMem = NULL;
e898de13 167 sh2_finish(&msh2);
168 sh2_finish(&ssh2);
5e49c3a8 169
170 PicoAHW &= ~PAHW_32X;
171}
172
be2c4208 173void PicoReset32x(void)
174{
83ff19ec 175 if (PicoAHW & PAHW_32X) {
61801d5b 176 msh2.m68krcycles_done = ssh2.m68krcycles_done = SekCyclesDoneT();
83ff19ec 177 Pico32x.sh2irqs |= P32XI_VRES;
4d5dfee8 178 p32x_update_irls(NULL, SekCyclesDoneT2());
19886062 179 p32x_sh2_poll_event(&msh2, SH2_IDLE_STATES, 0);
180 p32x_sh2_poll_event(&ssh2, SH2_IDLE_STATES, 0);
045a4c52 181 p32x_pwm_ctl_changed();
a8fd6e37 182 p32x_timers_recalc();
83ff19ec 183 }
be2c4208 184}
185
974fdb5b 186static void p32x_start_blank(void)
187{
7a961c19 188 if (Pico32xDrawMode != PDM32X_OFF && !PicoSkipFrame) {
5aec752d 189 int offs, lines;
190
191 pprof_start(draw);
192
193 offs = 8; lines = 224;
7a961c19 194 if ((Pico.video.reg[1] & 8) && !(PicoOpt & POPT_ALT_RENDERER)) {
195 offs = 0;
196 lines = 240;
197 }
198
199 // XXX: no proper handling of 32col mode..
5a681086 200 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0 && // 32x not blanking
201 (Pico.video.reg[12] & 1) && // 40col mode
202 (PicoDrawMask & PDRAW_32X_ON))
203 {
204 int md_bg = Pico.video.reg[7] & 0x3f;
5a681086 205
206 // we draw full layer (not line-by-line)
207 PicoDraw32xLayer(offs, lines, md_bg);
208 }
7a961c19 209 else if (Pico32xDrawMode != PDM32X_32X_ONLY)
210 PicoDraw32xLayerMdOnly(offs, lines);
5aec752d 211
212 pprof_end(draw);
5a681086 213 }
214
974fdb5b 215 // enter vblank
216 Pico32x.vdp_regs[0x0a/2] |= P32XV_VBLK|P32XV_PEN;
217
4ea707e1 218 // FB swap waits until vblank
974fdb5b 219 if ((Pico32x.vdp_regs[0x0a/2] ^ Pico32x.pending_fb) & P32XV_FS) {
220 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_FS;
221 Pico32x.vdp_regs[0x0a/2] |= Pico32x.pending_fb;
222 Pico32xSwapDRAM(Pico32x.pending_fb ^ 1);
223 }
4ea707e1 224
97d3f47f 225 Pico32x.sh2irqs |= P32XI_VINT;
4d5dfee8 226 p32x_update_irls(NULL, SekCyclesDoneT2());
19886062 227 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, 0);
228 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, 0);
974fdb5b 229}
230
5ac99d9a 231void p32x_schedule_hint(SH2 *sh2, int m68k_cycles)
232{
233 // rather rough, 32x hint is useless in practice
234 int after;
235
236 if (!((Pico32x.sh2irq_mask[0] | Pico32x.sh2irq_mask[1]) & 4))
237 return; // nobody cares
238 // note: when Pico.m.scanline is 224, SH2s might
239 // still be at scanline 93 (or so)
240 if (!(Pico32x.sh2_regs[0] & 0x80) && Pico.m.scanline > 224)
241 return;
242
243 after = (Pico32x.sh2_regs[4 / 2] + 1) * 488;
244 if (sh2 != NULL)
245 p32x_event_schedule_sh2(sh2, P32X_EVENT_HINT, after);
246 else
247 p32x_event_schedule(m68k_cycles, P32X_EVENT_HINT, after);
248}
249
19886062 250// compare cycles, handling overflows
251// check if a > b
252#define CYCLES_GT(a, b) \
253 ((int)((a) - (b)) > 0)
254// check if a >= b
255#define CYCLES_GE(a, b) \
256 ((int)((a) - (b)) >= 0)
257
a8fd6e37 258/* events */
a8fd6e37 259static void fillend_event(unsigned int now)
260{
261 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_nFEN;
19886062 262 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, now);
263 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, now);
a8fd6e37 264}
265
5ac99d9a 266static void hint_event(unsigned int now)
267{
268 Pico32x.sh2irqs |= P32XI_HINT;
269 p32x_update_irls(NULL, now);
270 p32x_schedule_hint(NULL, now);
271}
272
a8fd6e37 273typedef void (event_cb)(unsigned int now);
274
6a98f03e 275unsigned int event_times[P32X_EVENT_COUNT];
a8fd6e37 276static unsigned int event_time_next;
277static event_cb *event_cbs[] = {
df63f1a6 278 [P32X_EVENT_PWM] = p32x_pwm_irq_event,
a8fd6e37 279 [P32X_EVENT_FILLEND] = fillend_event,
5ac99d9a 280 [P32X_EVENT_HINT] = hint_event,
a8fd6e37 281};
282
19886062 283// schedule event at some time 'after', in m68k clocks
284void p32x_event_schedule(unsigned int now, enum p32x_event event, int after)
a8fd6e37 285{
19886062 286 unsigned int when;
287
288 when = (now + after) | 1;
a8fd6e37 289
290 elprintf(EL_32X, "new event #%u %u->%u", event, now, when);
291 event_times[event] = when;
292
19886062 293 if (event_time_next == 0 || CYCLES_GT(event_time_next, when))
a8fd6e37 294 event_time_next = when;
295}
296
19886062 297void p32x_event_schedule_sh2(SH2 *sh2, enum p32x_event event, int after)
298{
299 unsigned int now = sh2_cycles_done_m68k(sh2);
300 int left_to_next;
301
302 p32x_event_schedule(now, event, after);
303
304 left_to_next = (event_time_next - now) * 3;
c1931173 305 sh2_end_run(sh2, left_to_next);
19886062 306}
307
a8fd6e37 308static void run_events(unsigned int until)
309{
310 int oldest, oldest_diff, time;
311 int i, diff;
312
313 while (1) {
314 oldest = -1, oldest_diff = 0x7fffffff;
315
316 for (i = 0; i < P32X_EVENT_COUNT; i++) {
317 if (event_times[i]) {
318 diff = event_times[i] - until;
319 if (diff < oldest_diff) {
320 oldest_diff = diff;
321 oldest = i;
322 }
323 }
324 }
325
326 if (oldest_diff <= 0) {
327 time = event_times[oldest];
328 event_times[oldest] = 0;
329 elprintf(EL_32X, "run event #%d %u", oldest, time);
330 event_cbs[oldest](time);
331 }
332 else if (oldest_diff < 0x7fffffff) {
333 event_time_next = event_times[oldest];
334 break;
335 }
336 else {
337 event_time_next = 0;
338 break;
339 }
340 }
341
342 if (oldest != -1)
343 elprintf(EL_32X, "next event #%d at %u", oldest, event_time_next);
344}
345
19886062 346static inline void run_sh2(SH2 *sh2, int m68k_cycles)
347{
348 int cycles, done;
349
350 pevt_log_sh2_o(sh2, EVT_RUN_START);
351 sh2->state |= SH2_STATE_RUN;
352 cycles = C_M68K_TO_SH2(*sh2, m68k_cycles);
f8675e28 353 elprintf_sh2(sh2, EL_32X, "+run %u %d @%08x",
354 sh2->m68krcycles_done, cycles, sh2->pc);
19886062 355
356 done = sh2_execute(sh2, cycles);
357
358 sh2->m68krcycles_done += C_SH2_TO_M68K(*sh2, done);
359 sh2->state &= ~SH2_STATE_RUN;
360 pevt_log_sh2_o(sh2, EVT_RUN_END);
f8675e28 361 elprintf_sh2(sh2, EL_32X, "-run %u %d",
362 sh2->m68krcycles_done, done);
19886062 363}
364
365// sync other sh2 to this one
366// note: recursive call
367void p32x_sync_other_sh2(SH2 *sh2, unsigned int m68k_target)
368{
f81107f5 369 SH2 *osh2 = sh2->other_sh2;
19886062 370 int left_to_event;
371 int m68k_cycles;
372
373 if (osh2->state & SH2_STATE_RUN)
374 return;
375
376 m68k_cycles = m68k_target - osh2->m68krcycles_done;
377 if (m68k_cycles < 200)
378 return;
379
380 if (osh2->state & SH2_IDLE_STATES) {
381 osh2->m68krcycles_done = m68k_target;
382 return;
383 }
384
f8675e28 385 elprintf_sh2(osh2, EL_32X, "sync to %u %d",
386 m68k_target, m68k_cycles);
19886062 387
388 run_sh2(osh2, m68k_cycles);
389
390 // there might be new event to schedule current sh2 to
391 if (event_time_next) {
392 left_to_event = event_time_next - m68k_target;
393 left_to_event *= 3;
394 if (sh2_cycles_left(sh2) > left_to_event) {
395 if (left_to_event < 1)
396 left_to_event = 1;
397 sh2_end_run(sh2, left_to_event);
398 }
399 }
400}
a8fd6e37 401
ed4402a7 402#define sync_sh2s_normal p32x_sync_sh2s
403//#define sync_sh2s_lockstep p32x_sync_sh2s
974fdb5b 404
a8fd6e37 405/* most timing is in 68k clock */
ed4402a7 406void sync_sh2s_normal(unsigned int m68k_target)
407{
a8fd6e37 408 unsigned int now, target, timer_cycles;
19886062 409 int cycles;
ed4402a7 410
a8fd6e37 411 elprintf(EL_32X, "sh2 sync to %u", m68k_target);
ed4402a7 412
27e26273 413 if (!(Pico32x.regs[0] & P32XS_nRES)) {
414 msh2.m68krcycles_done = ssh2.m68krcycles_done = m68k_target;
ed4402a7 415 return; // rare
27e26273 416 }
ed4402a7 417
a8fd6e37 418 now = msh2.m68krcycles_done;
419 if (CYCLES_GT(now, ssh2.m68krcycles_done))
420 now = ssh2.m68krcycles_done;
421 timer_cycles = now;
422
423 while (CYCLES_GT(m68k_target, now))
ed4402a7 424 {
a8fd6e37 425 if (event_time_next && CYCLES_GE(now, event_time_next))
426 run_events(now);
ed4402a7 427
a8fd6e37 428 target = m68k_target;
429 if (event_time_next && CYCLES_GT(target, event_time_next))
430 target = event_time_next;
431
432 while (CYCLES_GT(target, now))
433 {
434 elprintf(EL_32X, "sh2 exec to %u %d,%d/%d, flags %x", target,
435 target - msh2.m68krcycles_done, target - ssh2.m68krcycles_done,
436 m68k_target - now, Pico32x.emu_flags);
ed4402a7 437
19886062 438 if (!(ssh2.state & SH2_IDLE_STATES)) {
a8fd6e37 439 cycles = target - ssh2.m68krcycles_done;
440 if (cycles > 0) {
19886062 441 run_sh2(&ssh2, cycles);
a8fd6e37 442
443 if (event_time_next && CYCLES_GT(target, event_time_next))
444 target = event_time_next;
445 }
ed4402a7 446 }
447
19886062 448 if (!(msh2.state & SH2_IDLE_STATES)) {
a8fd6e37 449 cycles = target - msh2.m68krcycles_done;
450 if (cycles > 0) {
19886062 451 run_sh2(&msh2, cycles);
a8fd6e37 452
453 if (event_time_next && CYCLES_GT(target, event_time_next))
454 target = event_time_next;
455 }
ed4402a7 456 }
a8fd6e37 457
19886062 458 now = target;
459 if (!(msh2.state & SH2_IDLE_STATES)) {
460 if (CYCLES_GT(now, msh2.m68krcycles_done))
461 now = msh2.m68krcycles_done;
462 }
463 if (!(ssh2.state & SH2_IDLE_STATES)) {
464 if (CYCLES_GT(now, ssh2.m68krcycles_done))
465 now = ssh2.m68krcycles_done;
466 }
ed4402a7 467 }
a8fd6e37 468
045a4c52 469 p32x_timers_do(now - timer_cycles);
a8fd6e37 470 timer_cycles = now;
ed4402a7 471 }
19886062 472
473 // advance idle CPUs
474 if (msh2.state & SH2_IDLE_STATES) {
475 if (CYCLES_GT(m68k_target, msh2.m68krcycles_done))
476 msh2.m68krcycles_done = m68k_target;
477 }
478 if (ssh2.state & SH2_IDLE_STATES) {
479 if (CYCLES_GT(m68k_target, ssh2.m68krcycles_done))
480 ssh2.m68krcycles_done = m68k_target;
481 }
236990cf 482}
acd35d4c 483
c987bb5c 484#define STEP_68K 24
ed4402a7 485
486void sync_sh2s_lockstep(unsigned int m68k_target)
487{
488 unsigned int mcycles;
489
490 mcycles = msh2.m68krcycles_done;
491 if (ssh2.m68krcycles_done < mcycles)
492 mcycles = ssh2.m68krcycles_done;
493
494 while (mcycles < m68k_target) {
495 mcycles += STEP_68K;
496 sync_sh2s_normal(mcycles);
497 }
87accdf7 498}
499
ed4402a7 500#define CPUS_RUN(m68k_cycles,s68k_cycles) do { \
501 SekRunM68k(m68k_cycles); \
19886062 502 if (Pico32x.emu_flags & (P32XF_68KCPOLL|P32XF_68KVPOLL)) \
503 p32x_sync_sh2s(SekCyclesDoneT2()); \
ed4402a7 504} while (0)
87accdf7 505
ed4402a7 506#define PICO_32X
974fdb5b 507#include "../pico_cmn.c"
508
509void PicoFrame32x(void)
510{
5ac99d9a 511 Pico.m.scanline = 0;
512
4ea707e1 513 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_VBLK; // get out of vblank
db1d3564 514 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0) // no forced blanking
515 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_PEN; // no palette access
4ea707e1 516
5ac99d9a 517 if (!(Pico32x.sh2_regs[0] & 0x80))
518 p32x_schedule_hint(NULL, SekCyclesDoneT2());
19886062 519 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, 0);
520 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, 0);
974fdb5b 521
522 PicoFrameStart();
523 PicoFrameHints();
51d86e55 524 sh2_drc_frame();
525
19886062 526 elprintf(EL_32X, "poll: %02x %02x %02x",
527 Pico32x.emu_flags & 3, msh2.state, ssh2.state);
974fdb5b 528}
db1d3564 529
ed4402a7 530// calculate multipliers against 68k clock (7670442)
531// normally * 3, but effectively slower due to high latencies everywhere
532// however using something lower breaks MK2 animations
533void Pico32xSetClocks(int msh2_hz, int ssh2_hz)
534{
535 float m68k_clk = (float)(OSC_NTSC / 7);
536 if (msh2_hz > 0) {
537 msh2.mult_m68k_to_sh2 = (int)((float)msh2_hz * (1 << CYCLE_MULT_SHIFT) / m68k_clk);
538 msh2.mult_sh2_to_m68k = (int)(m68k_clk * (1 << CYCLE_MULT_SHIFT) / (float)msh2_hz);
539 }
540 if (ssh2_hz > 0) {
541 ssh2.mult_m68k_to_sh2 = (int)((float)ssh2_hz * (1 << CYCLE_MULT_SHIFT) / m68k_clk);
542 ssh2.mult_sh2_to_m68k = (int)(m68k_clk * (1 << CYCLE_MULT_SHIFT) / (float)ssh2_hz);
543 }
544}
545
27e26273 546void Pico32xStateLoaded(int is_early)
547{
548 if (is_early) {
549 Pico32xMemStateLoaded();
550 return;
551 }
552
19886062 553 SekCycleCnt = 0;
27e26273 554 sh2s[0].m68krcycles_done = sh2s[1].m68krcycles_done = SekCycleCntT;
4d5dfee8 555 p32x_update_irls(NULL, SekCycleCntT);
df63f1a6 556 p32x_pwm_state_loaded();
27e26273 557 run_events(SekCycleCntT);
558}
559
ed4402a7 560// vim:shiftwidth=2:ts=2:expandtab