X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=fceu.git;a=blobdiff_plain;f=cart.c;h=742f9b0d8a27d237e179f00a04db709e076070d3;hp=e1cd5dae4208d4e314374d555f892d574d94f7fa;hb=e7f5287861e2da956537a6db8abb26f9a26255f8;hpb=e2d0dd92bfad989cce4270fc0ac5a712476c7c50 diff --git a/cart.c b/cart.c index e1cd5da..742f9b0 100644 --- a/cart.c +++ b/cart.c @@ -711,4 +711,22 @@ void FCEU_LoadGameSave(CartInfo *LocalHWInfo) } } +void DumpEmptyCartMapping(void) +{ + int x, st=0, end=-1; + + for(x=8;x<32;x++) + { + if (Page[x] == (nothing-x*2048) || Page[x] == 0) + { + if (end != x) st=x; + end=x+1; + } + if (end == x) + printf("DumpEmptyCartMapping: %04x-%04x\n", st*2048, end*2048-1); + } + if (end==32) + printf("DumpEmptyCartMapping: %04x-%04x\n", st*2048, end*2048-1); +} +