X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=pico%2Fpico_int.h;h=bb8fde7554976e0db85fb81810b48af3ec9f6e85;hb=0219d379de3e8168a94dc4a5f220af04039868fd;hp=bba13c95059e87d379f6bb140d86602392c88b0e;hpb=f8675e282e7aa72bc6ab0edbb1dada4395d1c44c;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index bba13c9..bb8fde7 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -353,7 +353,7 @@ struct Pico unsigned short vsram[0x40]; // 0x22180 unsigned char *rom; // 0x22200 - unsigned int romsize; // 0x22204 + unsigned int romsize; // 0x22204 (on 32bits) struct PicoMisc m; struct PicoVideo video; @@ -749,6 +749,7 @@ extern struct Pico32x Pico32x; enum p32x_event { P32X_EVENT_PWM, P32X_EVENT_FILLEND, + P32X_EVENT_HINT, P32X_EVENT_COUNT, }; extern unsigned int event_times[P32X_EVENT_COUNT]; @@ -766,6 +767,7 @@ void p32x_update_irls(SH2 *active_sh2, int m68k_cycles); void p32x_reset_sh2s(void); void p32x_event_schedule(unsigned int now, enum p32x_event event, int after); void p32x_event_schedule_sh2(SH2 *sh2, enum p32x_event event, int after); +void p32x_schedule_hint(SH2 *sh2, int m68k_cycles); // 32x/memory.c struct Pico32xMem *Pico32xMem;