|
|
| version 1.4, 2005/02/04 06:42:07 | version 1.5, 2008/06/02 20:07:30 |
|---|---|
| Line 55 void nevent_progress(void) { | Line 55 void nevent_progress(void) { |
| } | } |
| CPU_BASECLOCK = nextbase; | CPU_BASECLOCK = nextbase; |
| CPU_REMCLOCK += nextbase; | CPU_REMCLOCK += nextbase; |
| // TRACEOUT(("nextbase = %d (%d)", nextbase, CPU_REMCLOCK)); | /* TRACEOUT(("nextbase = %d (%d)", nextbase, CPU_REMCLOCK)); */ |
| // イベント発生 | /* イベント発生 */ |
| wi = waititem; | wi = waititem; |
| while(wi < witem) { | while(wi < witem) { |
| item = *wi++; | item = *wi++; |
| Line 96 void nevent_set(UINT id, SINT32 eventclo | Line 96 void nevent_set(UINT id, SINT32 eventclo |
| NEVENTITEM n; | NEVENTITEM n; |
| NEVENTITEM p; | NEVENTITEM p; |
| // TRACEOUT(("event %d - %xclocks", id, eventclock)); | /* TRACEOUT(("event %d - %xclocks", id, eventclock)); */ |
| clock = CPU_BASECLOCK - CPU_REMCLOCK; | clock = CPU_BASECLOCK - CPU_REMCLOCK; |
| item = nevent.item + id; | item = nevent.item + id; |
| Line 133 void nevent_set(UINT id, SINT32 eventclo | Line 133 void nevent_set(UINT id, SINT32 eventclo |
| } | } |
| CPU_BASECLOCK -= clock; | CPU_BASECLOCK -= clock; |
| CPU_REMCLOCK -= clock; | CPU_REMCLOCK -= clock; |
| // TRACEOUT(("reset nextbase -%d (%d)", clock, CPU_REMCLOCK)); | /* TRACEOUT(("reset nextbase -%d (%d)", clock, CPU_REMCLOCK)); */ |
| } | } |
| else { | else { |
| p = n->next; | p = n->next; |