From 681142c1256e1d3b3ca290307e22bb2234d7bac1 Mon Sep 17 00:00:00 2001 From: cracyc Date: Mon, 20 Oct 2014 13:24:17 -0500 Subject: upd7220: better output for the compis and dmv [Carl] --- src/emu/video/upd7220.c | 67 +++++++++++++++++++++++++++++----------------- src/emu/video/upd7220.h | 1 + src/mess/drivers/compis.c | 54 +++++++++++++++++-------------------- src/mess/includes/compis.h | 3 +-- 4 files changed, 70 insertions(+), 55 deletions(-) diff --git a/src/emu/video/upd7220.c b/src/emu/video/upd7220.c index d9a61c0bbec..f211eb84854 100644 --- a/src/emu/video/upd7220.c +++ b/src/emu/video/upd7220.c @@ -33,6 +33,7 @@ - honor visible area - wide mode (32-bit access) - light pen + - dad and mask are the same, in figd dad is shifted every step and when msb or lsb are 1 ead is advanced in x dir */ @@ -120,15 +121,19 @@ enum #define UPD7220_SR_HBLANK_ACTIVE 0x40 #define UPD7220_SR_LIGHT_PEN_DETECT 0x80 -#define UPD7220_MODE_S 0x01 #define UPD7220_MODE_REFRESH_RAM 0x04 -#define UPD7220_MODE_I 0x08 #define UPD7220_MODE_DRAW_ON_RETRACE 0x10 #define UPD7220_MODE_DISPLAY_MASK 0x22 #define UPD7220_MODE_DISPLAY_MIXED 0x00 #define UPD7220_MODE_DISPLAY_GRAPHICS 0x02 #define UPD7220_MODE_DISPLAY_CHARACTER 0x20 #define UPD7220_MODE_DISPLAY_INVALID 0x22 +#define UPD7220_MODE_INTERLACE_MASK 0x09 +#define UPD7220_MODE_INTERLACE_NONE 0x00 +#define UPD7220_MODE_INTERLACE_INVALID 0x01 +#define UPD7220_MODE_INTERLACE_REPEAT 0x08 +#define UPD7220_MODE_INTERLACE_ON 0x09 + static const int x_dir[8] = { 0, 1, 1, 1, 0,-1,-1,-1}; static const int y_dir[8] = { 1, 1, 0,-1,-1,-1, 0, 1}; @@ -366,9 +371,16 @@ inline void upd7220_device::update_blank_timer(int state) inline void upd7220_device::recompute_parameters() { + int horiz_mult; /* TODO: assume that the pitch also controls number of horizontal pixels in a single cell */ - int horiz_mult = ((m_pitch == 40) ? 16 : 8); - int horiz_pix_total = (m_hs + m_hbp + m_aw + m_hfp) * horiz_mult; + // horiz_mult = 4 if both mixed and interlace? + if(((m_mode & UPD7220_MODE_DISPLAY_MASK) == UPD7220_MODE_DISPLAY_MIXED) || + ((m_mode & UPD7220_MODE_INTERLACE_MASK) == UPD7220_MODE_INTERLACE_ON)) + horiz_mult = 8; + else + horiz_mult = 16; + + int horiz_pix_total = (m_hs + m_hbp + m_hfp + m_aw) * horiz_mult; int vert_pix_total = m_vs + m_vbp + m_al + m_vfp; //printf("%d %d %d %d\n",m_hs,m_hbp,m_aw,m_hfp); @@ -377,7 +389,7 @@ inline void upd7220_device::recompute_parameters() if (horiz_pix_total == 0 || vert_pix_total == 0) //bail out if screen params aren't valid return; - attoseconds_t refresh = HZ_TO_ATTOSECONDS(clock() * horiz_mult) * horiz_pix_total * vert_pix_total; + attoseconds_t refresh = HZ_TO_ATTOSECONDS(clock() * 8) * horiz_pix_total * vert_pix_total; rectangle visarea; @@ -419,6 +431,7 @@ inline void upd7220_device::reset_figs_param() m_figs.m_d1 = 0x0008; m_figs.m_d2 = 0x0000; m_figs.m_dm = 0x0000; + m_figs.m_gd = 0; } @@ -479,19 +492,21 @@ inline void upd7220_device::write_vram(UINT8 type, UINT8 mod) result = 0; + if(((m_mode & UPD7220_MODE_DISPLAY_MASK) == UPD7220_MODE_DISPLAY_GRAPHICS) || m_figs.m_gd) + result = BITSWAP8(m_pr[1],0,1,2,3,4,5,6,7) | (BITSWAP8(m_pr[2],0,1,2,3,4,5,6,7) << 8); + else + result = m_pr[1] | (m_pr[2] << 8); + switch(type) { case 0: - result = (m_pr[1] & 0xff); - result |= (m_pr[2] << 8); result &= m_mask; break; case 2: - result = (m_pr[1] & 0xff); result &= (m_mask & 0xff); break; case 3: - result = (m_pr[1] << 8); + result <<= 8; result &= (m_mask & 0xff00); break; } @@ -760,7 +775,7 @@ void upd7220_device::device_timer(emu_timer &timer, device_timer_id id, int para void upd7220_device::draw_pixel(int x, int y, int xi, UINT16 tile_data) { - UINT32 addr = (y * m_pitch * 2 + (x >> 3)) & 0x3ffff; + UINT32 addr = ((y * m_pitch * 2) + (x >> 3)) & 0x3ffff; UINT8 data = readbyte(addr); UINT8 new_pixel = (xi & 8 ? tile_data >> 8 : tile_data & 0xff) & (0x80 >> (xi & 7)); new_pixel = new_pixel ? (0xff & (0x80 >> (x & 7))) : 0; @@ -797,7 +812,7 @@ void upd7220_device::draw_line(int x, int y) UINT16 pattern = (m_ra[8]) | (m_ra[9]<<8); int line_step = 0; - LOG(("uPD7220 line check: %d %d %02x %08x %d %d\n",x,y,m_figs.m_dir,m_ead,m_figs.m_d1,m_figs.m_dc)); + LOG(("uPD7220 line check: %d %d %02x %08x %d %d %d\n",x,y,m_figs.m_dir,m_ead,m_figs.m_d1,m_figs.m_dc,m_bitmap_mod)); line_size = m_figs.m_dc; @@ -815,7 +830,7 @@ void upd7220_device::draw_line(int x, int y) x += (line_step*line_x_step[m_figs.m_dir]); y += (line_step*line_y_step[m_figs.m_dir]); - m_ead = (x >> 4) + (y * m_pitch); + m_ead = (x >> 4) + (y * (m_pitch >> m_figs.m_gd)); m_dad = x & 0x0f; } @@ -880,7 +895,7 @@ void upd7220_device::draw_arc(int x, int y) break; } - m_ead = (x >> 4) + (y * m_pitch); + m_ead = (x >> 4) + (y * (m_pitch >> m_figs.m_gd)); m_dad = x & 0x0f; } @@ -935,7 +950,7 @@ void upd7220_device::draw_rectangle(int x, int y) y+=rect_y_dir[rect_dir]; } - m_ead = (x >> 4) + (y * m_pitch); + m_ead = (x >> 4) + (y * (m_pitch >> m_figs.m_gd)); m_dad = x & 0x0f; } @@ -975,7 +990,7 @@ void upd7220_device::draw_char(int x, int y) } } - m_ead = (x >> 4) + (y * m_pitch); + m_ead = (x >> 4) + (y * (m_pitch >> m_figs.m_gd)); m_dad = (x & 0xf); } @@ -1037,6 +1052,7 @@ void upd7220_device::process_fifo() { UINT8 data; int flag; + UINT16 eff_pitch = m_pitch >> m_figs.m_gd; dequeue(&data, &flag); @@ -1203,12 +1219,12 @@ void upd7220_device::process_fifo() m_ead = (upper_addr << 16) | (m_pr[2] << 8) | m_pr[1]; - //LOG(("uPD7220 '%s' EAD: %06x\n", tag(), m_ead)); + LOG(("uPD7220 '%s' EAD: %06x\n", tag(), m_ead)); if(m_param_ptr == 4) { m_dad = m_pr[3] >> 4; - //LOG(("uPD7220 '%s' DAD: %01x\n", tag(), m_dad)); + LOG(("uPD7220 '%s' DAD: %01x\n", tag(), m_dad)); } } break; @@ -1246,7 +1262,7 @@ void upd7220_device::process_fifo() if (m_param_ptr == 3 || (m_param_ptr == 2 && m_cr & 0x10)) { - //printf("%02x = %02x %02x (%c) %04x\n",m_cr,m_pr[2],m_pr[1],m_pr[1],EAD); + LOG(("%02x = %02x %02x (%c) %06x %04x\n",m_cr,m_pr[2],m_pr[1],m_pr[1]?m_pr[1]:' ',m_ead,m_figs.m_dc)); fifo_set_direction(FIFO_WRITE); write_vram((m_cr & 0x18) >> 3,m_cr & 3); @@ -1280,7 +1296,10 @@ void upd7220_device::process_fifo() m_figs.m_dc = (m_pr[2]) | (m_figs.m_dc & 0x3f00); if (m_param_ptr == 4) + { m_figs.m_dc = (m_pr[2]) | ((m_pr[3] & 0x3f) << 8); + m_figs.m_gd = (m_pr[3] & 0x40) && ((m_mode & UPD7220_MODE_DISPLAY_MASK) == UPD7220_MODE_DISPLAY_MIXED); + } if (m_param_ptr == 6) m_figs.m_d = (m_pr[4]) | ((m_pr[5] & 0x3f) << 8); @@ -1298,13 +1317,13 @@ void upd7220_device::process_fifo() case COMMAND_FIGD: /* figure draw start */ if(m_figs.m_figure_type == 0) - draw_pixel(((m_ead % m_pitch) << 4) | (m_dad & 0xf),(m_ead / m_pitch),m_dad,(m_ra[8]) | (m_ra[9]<<8)); + draw_pixel(((m_ead % eff_pitch) << 4) | (m_dad & 0xf),(m_ead / eff_pitch),m_dad,(m_ra[8]) | (m_ra[9]<<8)); else if(m_figs.m_figure_type == 1) - draw_line(((m_ead % m_pitch) << 4) | (m_dad & 0xf),(m_ead / m_pitch)); + draw_line(((m_ead % eff_pitch) << 4) | (m_dad & 0xf),(m_ead / eff_pitch)); else if(m_figs.m_figure_type == 4) - draw_arc(((m_ead % m_pitch) << 4) | (m_dad & 0xf),(m_ead / m_pitch)); + draw_arc(((m_ead % eff_pitch) << 4) | (m_dad & 0xf),(m_ead / eff_pitch)); else if(m_figs.m_figure_type == 8) - draw_rectangle(((m_ead % m_pitch) << 4) | (m_dad & 0xf),(m_ead / m_pitch)); + draw_rectangle(((m_ead % eff_pitch) << 4) | (m_dad & 0xf),(m_ead / eff_pitch)); else logerror("uPD7220 '%s' Unimplemented command FIGD %02x\n", tag(),m_figs.m_figure_type); @@ -1314,7 +1333,7 @@ void upd7220_device::process_fifo() case COMMAND_GCHRD: /* graphics character draw and area filling start */ if(m_figs.m_figure_type == 2) - draw_char(((m_ead % m_pitch) << 4) | (m_dad & 0xf),(m_ead / m_pitch)); + draw_char(((m_ead % eff_pitch) << 4) | (m_dad & 0xf),(m_ead / eff_pitch)); else logerror("uPD7220 '%s' Unimplemented command GCHRD %02x\n", tag(),m_figs.m_figure_type); @@ -1568,7 +1587,7 @@ void upd7220_device::update_graphics(bitmap_rgb32 &bitmap, const rectangle &clip addr = ((sad << 1) & 0x3ffff) + (y * m_pitch * 2); if (!m_display_cb.isnull()) - draw_graphics_line(bitmap, addr, y + bsy/((m_pitch == 40)+1), wd); + draw_graphics_line(bitmap, addr, y + (bsy >> !im), wd); } } else diff --git a/src/emu/video/upd7220.h b/src/emu/video/upd7220.h index 05bf1b6388a..affbe531c40 100644 --- a/src/emu/video/upd7220.h +++ b/src/emu/video/upd7220.h @@ -209,6 +209,7 @@ private: UINT8 m_dir; // figs param 0: drawing direction UINT8 m_figure_type; // figs param 1: figure type UINT16 m_dc; // figs param 2: + UINT8 m_gd; // mixed mode only UINT16 m_d; // figs param 3: UINT16 m_d1; // figs param 4: UINT16 m_d2; // figs param 5: diff --git a/src/mess/drivers/compis.c b/src/mess/drivers/compis.c index 688304fa45a..a69b7398f80 100644 --- a/src/mess/drivers/compis.c +++ b/src/mess/drivers/compis.c @@ -99,6 +99,24 @@ READ16_MEMBER( compis_state::isbx1_tdma_r ) { if (offset < 2) return m_crtc->read(space, offset & 0x01); + else + // monochrome only, hblank? vblank? + if(offset == 2) + { + switch(m_unk_video) + { + case 0x04: + m_unk_video = 0x44; + break; + case 0x44: + m_unk_video = 0x64; + break; + default: + m_unk_video = 0x04; + break; + } + return m_unk_video; + } else return 0; } @@ -115,7 +133,9 @@ WRITE16_MEMBER( compis_state::isbx1_tdma_w ) { if (ACCESSING_BITS_0_7) { + // 0x336 is likely the color plane register if (offset < 2) m_crtc->write(space, offset & 0x01, data); + } else { @@ -221,27 +241,6 @@ WRITE16_MEMBER( compis_state::isbx1_dack_w ) } -//------------------------------------------------- -// vram_r - -//------------------------------------------------- - -READ8_MEMBER( compis_state::vram_r ) -{ - return m_video_ram[offset]; -} - - -//------------------------------------------------- -// vram_w - -//------------------------------------------------- - -WRITE8_MEMBER( compis_state::vram_w ) -{ - m_video_ram[offset] = data; -} - - - //************************************************************************** // ADDRESS MAPS //************************************************************************** @@ -253,7 +252,6 @@ WRITE8_MEMBER( compis_state::vram_w ) static ADDRESS_MAP_START( compis_mem, AS_PROGRAM, 16, compis_state ) ADDRESS_MAP_UNMAP_HIGH AM_RANGE(0x00000, 0x1ffff) AM_RAM - AM_RANGE(0x40000, 0x5ffff) AM_READWRITE8(vram_r, vram_w, 0xffff) AM_RANGE(0x60000, 0x63fff) AM_MIRROR(0x1c000) AM_DEVICE(I80130_TAG, i80130_device, rom_map) AM_RANGE(0xe0000, 0xeffff) AM_MIRROR(0x10000) AM_ROM AM_REGION(I80186_TAG, 0) ADDRESS_MAP_END @@ -265,9 +263,7 @@ ADDRESS_MAP_END static ADDRESS_MAP_START( compis2_mem, AS_PROGRAM, 16, compis_state ) ADDRESS_MAP_UNMAP_HIGH - AM_RANGE(0x00000, 0x3ffff) AM_RAM - AM_RANGE(0x40000, 0x5ffff) AM_READWRITE8(vram_r, vram_w, 0xffff) - AM_RANGE(0x60000, 0xbffff) AM_RAM + AM_RANGE(0x00000, 0xbffff) AM_RAM AM_RANGE(0xe0000, 0xeffff) AM_MIRROR(0x10000) AM_ROM AM_REGION(I80186_TAG, 0) ADDRESS_MAP_END @@ -317,8 +313,8 @@ ADDRESS_MAP_END //------------------------------------------------- static ADDRESS_MAP_START( upd7220_map, AS_0, 8, compis_state ) - ADDRESS_MAP_GLOBAL_MASK(0x1ffff) - AM_RANGE(0x00000, 0x1ffff) AM_RAM AM_SHARE("video_ram") + ADDRESS_MAP_GLOBAL_MASK(0x7fff) + AM_RANGE(0x00000, 0x7fff) AM_RAM AM_SHARE("video_ram") ADDRESS_MAP_END @@ -455,11 +451,11 @@ INPUT_PORTS_END UPD7220_DISPLAY_PIXELS_MEMBER( compis_state::hgdc_display_pixels ) { - UINT8 i,gfx = m_video_ram[address]; + UINT8 i,gfx = m_video_ram[(address & 0x7fff)]; const pen_t *pen = m_palette->pens(); for(i=0; i<8; i++) - bitmap.pix32(y, x + i) = pen[BIT(gfx, i)]; + bitmap.pix32(y, x + i) = pen[BIT(gfx, 7 - i)]; } diff --git a/src/mess/includes/compis.h b/src/mess/includes/compis.h index a933c48526b..27e181250f0 100644 --- a/src/mess/includes/compis.h +++ b/src/mess/includes/compis.h @@ -103,8 +103,6 @@ public: DECLARE_WRITE16_MEMBER( isbx1_cs_w ); DECLARE_READ16_MEMBER( isbx1_dack_r ); DECLARE_WRITE16_MEMBER( isbx1_dack_w ); - DECLARE_READ8_MEMBER( vram_r ); - DECLARE_WRITE8_MEMBER( vram_w ); DECLARE_READ8_MEMBER( compis_irq_callback ); @@ -125,6 +123,7 @@ public: DECLARE_WRITE_LINE_MEMBER(write_centronics_select); int m_tmr0; + int m_unk_video; UPD7220_DISPLAY_PIXELS_MEMBER( hgdc_display_pixels ); }; -- cgit v1.2.3 From b8191193e90cd9bc80eb9c1186dd1d78a5d3e62e Mon Sep 17 00:00:00 2001 From: David Viens Date: Mon, 20 Oct 2014 14:38:48 -0400 Subject: Update winos.c MSVC2010 compilation fix --- src/osd/windows/winos.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osd/windows/winos.c b/src/osd/windows/winos.c index a5afa35a824..5043ddb2775 100644 --- a/src/osd/windows/winos.c +++ b/src/osd/windows/winos.c @@ -6,6 +6,7 @@ #define WIN32_LEAN_AND_MEAN #include +#include // MAME headers #include "osdcore.h" -- cgit v1.2.3 From 7dd7305e605b72500cb41fed9724fc16bd95795f Mon Sep 17 00:00:00 2001 From: Osso Date: Mon, 20 Oct 2014 20:39:03 +0200 Subject: Fixed MT05252 (nw) --- hash/megadriv.xml | 63 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 27 deletions(-) diff --git a/hash/megadriv.xml b/hash/megadriv.xml index 5ff2e582307..f2b3dee340a 100644 --- a/hash/megadriv.xml +++ b/hash/megadriv.xml @@ -17338,15 +17338,18 @@ but dumps still have to be confirmed. Madden NFL 98 (USA) - 1997 - Electronic Arts - - - - - - - + 1997 + Electronic Arts + + + + + + + + + + Madou Monogatari I (Jpn) 1996 @@ -19660,15 +19663,18 @@ Notice that these are not working on real hardware due to bugged code with VDP i NHL 98 (USA) - 1997 - Electronic Arts - - - - - - - + 1997 + Electronic Arts + + + + + + + + + + NHL All-Star Hockey '95 (Prototype, 19941201-B) 1994 @@ -30692,15 +30698,18 @@ Notice that these are not working on real hardware due to bugged code with VDP i NHLPA 2003 (Rus) - 199? - <unknown> - - - - - - - + 199? + <unknown> + + + + + + + + + + Pirates of the Caribbean (Rus) 199? -- cgit v1.2.3 From 168ca86a3d200a9893726a8bd5aa01e20f638192 Mon Sep 17 00:00:00 2001 From: David Viens Date: Mon, 20 Oct 2014 14:40:45 -0400 Subject: Update x68k.c MSCV2010 warning treated as error complains about this bool being potentially uninitialized. --- src/mess/video/x68k.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/video/x68k.c b/src/mess/video/x68k.c index da5ea70c6fb..b9f03430e1b 100644 --- a/src/mess/video/x68k.c +++ b/src/mess/video/x68k.c @@ -890,7 +890,7 @@ bool x68k_state::x68k_draw_gfx_scanline( bitmap_ind16 &bitmap, rectangle cliprec void x68k_state::x68k_draw_gfx(bitmap_rgb32 &bitmap,rectangle cliprect) { int priority, scanline, pixel; - bool gfxblend; + bool gfxblend=false; //rectangle rect; //int xscr,yscr; //int gpage; -- cgit v1.2.3 From 634a5d8b924a5e0619b9ec3c70ef0e4d3bf59563 Mon Sep 17 00:00:00 2001 From: Cowering Date: Mon, 20 Oct 2014 13:58:32 -0500 Subject: Some more adds/fixes for V.Smile --- hash/vsmile_cart.xml | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/hash/vsmile_cart.xml b/hash/vsmile_cart.xml index 8659507e38c..7a461b7bbf7 100644 --- a/hash/vsmile_cart.xml +++ b/hash/vsmile_cart.xml @@ -11,9 +11,17 @@ NOTE: This list is here only to document available dumps and it's not used (yet) V.Reader: 80-28**** -V.Smile Motion: 80-08**** -V.Smile Smartbook Software: 80-089*** -V.Smile: 80-092*** +V.Smile Motion: 80-08**** (Smartridges are orange) +V.Smile Smartbook Software: 80-089*** (Smartridges are red) +V.Smile: 80-092*** (Smartridges are purple, some are gray because of plastic defects) + +Addons (w/ yellow Smartridges) +V.Smile Smart Keyboard 80-091440 +V.Smile PC Pal 80-03600 +V.Smile Art Studio 80-67000 +V.Smile Jamming Gym Class 80-91320 + +- Not compatible with V.Smile games, left as documentation V.Flash (V.Smile Pro): 80-093*** @@ -85,9 +93,11 @@ Language: 80-084604(GER) | Cinderella - Lernen im Märchenland 80-084624(GER) | Findet Nemo - Nemos Unterwasserabenteuer + 80-089000(US) | Spider-Man & Friends Where is Hulk? 80-089020(US) | Toy Story 2 -80-089040(US) | Dora the Explorer +80-089040(US) | Dora's Fix It Adventure +80-089060(US) | Scooby-Doo! - A Night of Fright is no Delight 80-090000(US) | Up 80-090000(GER) | Oben @@ -105,14 +115,14 @@ Language: 80-092004(GER) | Abenteuer im ABC Park 80-092020(US) | The Adventures of Little Red Riding Hood 80-092024(GER) | Entdecke die Welt von Rotkäppchen -80-092060(US) | Winnie The Pooh: Honey Hunt +80-092060(US) | Winnie The Pooh: The Honey Hunt 80-092064(GER) | Winnie Puuh - Die Honigjagd 80-092080(US) | Mickey Mouse - Mickey's Magical Adventures 80-092087(SPA) | Mickey - La Aventura Magica de Mickey 80-092084(GER) | Micky - Mickys magisches Abenteuer 80-092100(US) | The Lion King: Simba's Big Adventure 80-092104(GER) | Der König der Löwen - Simbas großes Abenteuer -80-092120(US) | The Little Mermaid +80-092120(US) | The Little Mermaid - Ariel's Majestic Journey 80-092124(GER) | Arielle die Meerjungfrau - Arielles aufregendes Abenteuer 80-092127(SPA) | La Sirenita - El Vieje Fantástico de Ariel 80-092140(US) | Spider-Man & Friends - Secret Missions @@ -129,11 +139,14 @@ Language: 80-092264(GER) | Elmo's großes Abenteuer 80-092265(FRA) | Le Monde d'ELMO - Les Grandes Decouvertes D'Elmo 80-092280(US) | Dora The Explorer -80-092300(US) | Bob the Builder: Bob's busy day +80-092300(US) | Bob the Builder: Bob's Busy Day 80-092304(GER) | Bob der Baumeister - Achtung Baustelle 80-092320(US) | The Wiggles - It's Wiggle Time! 80-092340(US) | Thomas The Tank: Engines Working Together +80-092340-101(US) | Thomas The Tank: Engines Working Together (ALT) 80-092360(US) | Zayzoo My Alien Classmate +80-092360-101(US) | Zayzoo - An Earth Adventure +80-092380(US) | Barney - The Land of Make Believe 80-092384(GER) | Barney - Erlebnis-Reise 80-092400(US) | Blue's Clues Collection Day 80-092420(US) | Finding Nemo @@ -143,15 +156,16 @@ Language: 80-092480(US) | Batman: Gotham City Rescue 80-092500(US) | Whiz Kid Wheels 80-092520(US) | Spider-Man & Friends Doc Ock's Challenge -80-092540(US) | Noddy +80-092540(US) | Noddy - Detective for a Day 80-092544(GER) | Noddy 80-092564(GER) | 101 Dalmatiner -80-092580(US) | Backyardigans -80-092600(US) | Shrek 2 +80-092580(US) | Backyardigans - Viking Voyage +80-092600(US) | Shrek - Dragon's Tale 80-092620(US) | Lil' Bratz - Friends, Fashion and Fun -80-092640(US) | Superman +80-092640(US) | Superman - The Greatest Hero 80-092660(US) | Cars: Rev It Up In Radiator Springs 80-092662(NL) | Cars - Spektakel in Radiator Springs +80-092666(SPA) | Cars: Acelera El Motor En Radiador Springs 80-092664(GER) | Cars 80-092820(US) | Soccer 80-092824(GER) | Fußball Schule @@ -161,9 +175,9 @@ Language: 80-092882(NL) | Ratatouille 80-092884(GER) | Ratatouille - Remys neue Rezepte 80-092885(FRA) | Ratatouille - Les nouvelles recettes de Rémy -80-092900(US) | Go Diego Go +80-092900(US) | Go Diego Go - Save the Animal Familes! 80-092920(US) | Cranium - Partyland Park -80-092960(US) | Kung Fu Panda +80-092960(US) | Kung Fu Panda - Path of the Panda 80-092980(US) | Little Einsteins 80-093000(US) | The Crystal Ball Adventure -- cgit v1.2.3