Skip to content

Commit

Permalink
== Genesis/MD SCD ==
Browse files Browse the repository at this point in the history
- Preparing public release for 1.30
  • Loading branch information
ArtemioUrbina committed Aug 19, 2024
1 parent 2b6ded1 commit 979291d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions 240psuite/Genesis/240p/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ void DrawHelp(int option)
VDP_drawTextBG(APLAN, "HELP (2/2)", TILE_ATTR(PAL1, 0, 0, 0), 14, 4);
VDP_drawTextBG(APLAN, "The Genesis/MegaDrive can output", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "224 active video lines.", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
y++;
VDP_drawTextBG(APLAN, "In PAL consoles, it can display", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "either 224 or 240 lines.", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
y++;
Expand Down Expand Up @@ -634,8 +635,7 @@ void DrawHelp(int option)
VDP_drawTextBG(APLAN, "compatible screens.", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
y++;
VDP_drawTextBG(APLAN, "For PAL consoles, you can also", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "enable full 240p, instead of", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "224p.", TILE_ATTR(PAL0, 0, 0, 0), 4, y);
VDP_drawTextBG(APLAN, "toggle full 240p and 224p.", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
break;
case HELP_AUDIOSYNC:
VDP_drawTextBG(APLAN, "AUDIO SYNC", TILE_ATTR(PAL1, 0, 0, 0), 15, 4);
Expand Down Expand Up @@ -762,7 +762,9 @@ void DrawHelp(int option)
VDP_drawTextBG(APLAN, "You can also use a photodiode", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "and press C, which turns", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "the whole back to white for", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
VDP_drawTextBG(APLAN, "2 frames.", TILE_ATTR(PAL0, 0, 0, 0), 4, y);
VDP_drawTextBG(APLAN, "2 frames.", TILE_ATTR(PAL0, 0, 0, 0), 4, y++);
y++;
VDP_drawTextBG(APLAN, "Designed by Bob from RetroRGB", TILE_ATTR(PAL0, 0, 0, 0), 4, y);
break;
default:
exit = 1;
Expand Down
2 changes: 1 addition & 1 deletion 240psuite/Genesis/240p/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ void DrawCredits()
VDP_drawTextBG(APLAN, "http://junkerhq.net/240p", TILE_ATTR(PAL0, 0, 0, 0), 5, pos++);

VDP_drawTextBG(APLAN, "Ver. 1.30", TILE_ATTR(PAL1, 0, 0, 0), 26, 6);
VDP_drawTextBG(APLAN, "18/01/2024", TILE_ATTR(PAL0, 0, 0, 0), 26, 7);
VDP_drawTextBG(APLAN, "18/08/2024", TILE_ATTR(PAL0, 0, 0, 0), 26, 7);

VDP_drawTextBG(BPLAN, "Dedicated to Elisa", TILE_ATTR(PAL0, 0, 0, 0), 18, 24);
VDP_End();
Expand Down
6 changes: 3 additions & 3 deletions 240psuite/Genesis/240p/src/boot/rom_head.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ const struct
char region[16]; /* Country Support (16) */
} rom_header = {
"SEGA MEGA DRIVE ", /* Console Name (16) */
"(C) AUG 2022.JAN", /* Copyright Information (16) */
"(C) AUG 2024.AUG", /* Copyright Information (16) */
"240P TEST SUITE ", /* Domestic Name (48) */
"240P TEST SUITE ", /* Overseas Name (48) */
"GM 00002501-23", /* Serial Number (2, 12) */
"GM 00002501-24", /* Serial Number (2, 12) */
0x0000, /* Checksum (2), fixed by tool in makefile */
"J64 ", /* I/O Support (16) */
0x00000000, /* ROM Start Address (4) */
Expand All @@ -37,6 +37,6 @@ const struct
0x20202020, /* SRAM start address - normally 0x200001 (4) */
0x20202020, /* SRAM end address - start + 2*sram_size (4) */
" ", /* Modem Support (24) */
"ARTEMIO URBINA 2022 ", /* Memo (40) */
"ARTEMIO URBINA 2024 ", /* Memo (40) */
"JUE " /* Country Support (16) */
};
6 changes: 3 additions & 3 deletions 240psuite/Genesis/240p/src/boot/rom_head_MSU.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ const struct
char region[16]; /* Country Support (16) */
} rom_header = {
"SEGA MEGA DRIVE ",
" AUG 2021 DEC",
"(C) AUG 2024.AUG",
"240P TEST SUITE ",
"240P TEST SUITE ",
"GM 00002501-01",
"GM 00002501-24",
0x0000,
"JDC ",
0x00000000,
Expand All @@ -40,6 +40,6 @@ const struct
0x00000000,
0x00000000,
" ",
"ARTEMIO URBINA 2021 ",
"ARTEMIO URBINA 2024 ",
"JUE "
};

0 comments on commit 979291d

Please sign in to comment.