diff options
Diffstat (limited to 'src/mess/drivers/jr200.c')
-rw-r--r-- | src/mess/drivers/jr200.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mess/drivers/jr200.c b/src/mess/drivers/jr200.c index de4f782c99f..1461dba98c7 100644 --- a/src/mess/drivers/jr200.c +++ b/src/mess/drivers/jr200.c @@ -141,15 +141,15 @@ UINT32 jr200_state::screen_update_jr200(screen_device &screen, bitmap_ind16 &bit if(attr & 0x80) //bitmap mode { /* - this mode draws 4 x 4 dot blocks, by combining lower 6 bits of tile and attribute vram - - tile def - 00xx x--- up-right - 00-- -xxx up-left - attr def - 10xx x--- down-right - 10-- -xxx down-left - */ + this mode draws 4 x 4 dot blocks, by combining lower 6 bits of tile and attribute vram + + tile def + 00xx x--- up-right + 00-- -xxx up-left + attr def + 10xx x--- down-right + 10-- -xxx down-left + */ int step; step = ((xi & 4) ? 3 : 0); @@ -569,5 +569,5 @@ ROM_END /* Driver */ /* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */ -COMP( 1982, jr200, 0, 0, jr200, jr200, driver_device, 0, "National", "JR-200", GAME_NOT_WORKING | GAME_NO_SOUND) -COMP( 1982, jr200u, jr200, 0, jr200, jr200, driver_device, 0, "Panasonic", "JR-200U", GAME_NOT_WORKING | GAME_NO_SOUND) +COMP( 1982, jr200, 0, 0, jr200, jr200, driver_device, 0, "National", "JR-200", GAME_NOT_WORKING | GAME_NO_SOUND) +COMP( 1982, jr200u, jr200, 0, jr200, jr200, driver_device, 0, "Panasonic", "JR-200U", GAME_NOT_WORKING | GAME_NO_SOUND) |