MD Rom Header: Difference between revisions

From MegaDrive Development Wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight> Header: .ascii "SEGA MEGA DRIVE " →‎Console Name (16): .ascii "(C)SEGA 2012.MAR" ...")
 
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<syntaxhighlight>
<syntaxhighlight lang="asm">
Header:
Header:
         .ascii  "SEGA MEGA DRIVE "                                      /* Console Name (16) */
         .ascii  "SEGA MEGA DRIVE "                                      /* Console Name (16) */
Line 6: Line 6:
         .ascii  "MY PROG                                        "      /* Overseas Name (48) */
         .ascii  "MY PROG                                        "      /* Overseas Name (48) */
         .ascii  "GM 00000000-00"                                        /* Serial Number (2, 14) */
         .ascii  "GM 00000000-00"                                        /* Serial Number (2, 14) */
         dc.w    0x0000                                                  /* Checksum (2) */
         .word  0x0000                                                  /* Checksum (2) */
         .ascii  "JD              "                                      /* I/O Support (16) */
         .ascii  "JD              "                                      /* I/O Support (16) */
         dc.l    0x00000000                                              /* ROM Start Address (4) */
         .long  0x00000000                                              /* ROM Start Address (4) */
         dc.l    0x20000                                                /* ROM End Address (4) */
         .long  0x20000                                                /* ROM End Address (4) */
         dc.l    0x00FF0000                                              /* Start of Backup RAM (4) */
         .long  0x00FF0000                                              /* Start of Backup RAM (4) */
         dc.l   0x00FFFFFF                                              /* End of Backup RAM (4) */
         .long   0x00FFFFFF                                              /* End of Backup RAM (4) */
         .ascii  "                        "                              /* Modem Support (12) */
         .ascii  "                        "                              /* Modem Support (12) */
         .ascii  "                                        "              /* Memo (40) */
         .ascii  "                                        "              /* Memo (40) */
         .ascii  "JUE            "                                      /* Country Support (16) */
         .ascii  "JUE            "                                      /* Country Support (16) */
</syntaxhighlight>
</syntaxhighlight>
[[Category:MegaDrive]]
[[Category:Code]]

Latest revision as of 11:54, 19 January 2017

Header:
        .ascii  "SEGA MEGA DRIVE "                                      /* Console Name (16) */
        .ascii  "(C)SEGA 2012.MAR"                                      /* Copyright Information (16) */
        .ascii  "MY PROG                                         "      /* Domestic Name (48) */
        .ascii  "MY PROG                                         "      /* Overseas Name (48) */
        .ascii  "GM 00000000-00"                                        /* Serial Number (2, 14) */
        .word   0x0000                                                  /* Checksum (2) */
        .ascii  "JD              "                                      /* I/O Support (16) */
        .long   0x00000000                                              /* ROM Start Address (4) */
        .long   0x20000                                                 /* ROM End Address (4) */
        .long   0x00FF0000                                              /* Start of Backup RAM (4) */
        .long    0x00FFFFFF                                              /* End of Backup RAM (4) */
        .ascii  "                        "                              /* Modem Support (12) */
        .ascii  "                                        "              /* Memo (40) */
        .ascii  "JUE             "                                      /* Country Support (16) */