Difference between revisions of "Target"

From MSX Game Library

(Main)
(Mapped ROM program)
 
(54 intermediate revisions by the same user not shown)
Line 1: Line 1:
Target type description.
+
The choice of the target determines the final format of the game: ROM, disk, etc.
 +
 
 +
It is a parameter used by the [[Build Tool]] to adapt your code to the target during the construction of the final program and to assemble the data to be compatible with the target.
 +
 
 +
The choice of the format is made in the project configuration file (<tt>project_config.js</tt>).
 +
 
 +
Here is a description of the different target formats available in MSXgl.
 +
 
 
== Basic program ==
 
== Basic program ==
 +
Binary program to be executed from the BASIC environment using <tt>bload</tt> function.
 
{| class="wikitable"
 
{| class="wikitable"
 
! Target !! Description
 
! Target !! Description
 
|-
 
|-
| <tt>BIN</tt> || BASIC binary program (starting at 8000h)
+
| <tt>BIN_DISK</tt> || BASIC binary program (starting at 8000h) on disk
 +
|-
 +
| <tt>BIN_TAPE</tt> || BASIC binary program (starting at 8000h) on tape
 
|-
 
|-
 
| <tt>BIN_USR</tt> || BASIC USR binary driver (starting at C000h)
 
| <tt>BIN_USR</tt> || BASIC USR binary driver (starting at C000h)
 
|-
 
|-
| <tt>BAS</tt> || Alias for BIN
+
| <tt>BIN</tt> || Alias for BIN_DISK
 +
|-
 +
| <tt>BAS</tt> || Alias for BIN_DISK
 
|}
 
|}
  
 
<u>Note</u>: ''The maximum size of a BASIC program is about 24 KB (including variables).''
 
<u>Note</u>: ''The maximum size of a BASIC program is about 24 KB (including variables).''
 +
 +
The [[Build tool]] deployment step places your final program in several formats:
 +
* <tt>.bin</tt> format in <tt>emul/bin/</tt> folder
 +
* <tt>.dsk</tt> format in <tt>emul/dsk/</tt> folder (image of a floppy disk containing your program)
 +
* <tt>.cas</tt> format in <tt>emul/cas/</tt> folder (image of a tape cassette containing your program)
  
 
== MSX-DOS program ==
 
== MSX-DOS program ==
 +
Binary program to be executed from the MSX-DOS environment.
 +
 
{| class="wikitable"
 
{| class="wikitable"
 
! Target !! Description
 
! Target !! Description
Line 20: Line 39:
 
|-
 
|-
 
| <tt>DOS2</tt> || MSX-DOS 2 program (starting at 0100h)
 
| <tt>DOS2</tt> || MSX-DOS 2 program (starting at 0100h)
 +
|-
 +
| <tt>DOS0</tt> || Direct program boot from disk (starting at 0100h)
 
|-
 
|-
 
| <tt>DOS</tt> || Alias for <tt>DOS1</tt>
 
| <tt>DOS</tt> || Alias for <tt>DOS1</tt>
 +
|-
 +
| <tt>BOOT</tt> || Alias for <tt>DOS0</tt>
 
|}
 
|}
<u>Note</u>: ''The maximum size of a MSX-DOS program is about 53 KB (including variables).''
+
<u>Note</u>:
 +
* ''The maximum size of a MSX-DOS program is about 53 KB (including variables).''
 +
* ''For "DOS0" target, maximum is 48 KB (excluding variables).''
 +
 
 +
The [[Build tool]] deployment step places your final program in two formats:
 +
* <tt>.com</tt> format in <tt>emul/dosX/</tt> folder (<tt>dos1</tt>, <tt>dos2</tt> ou <tt>dos0</tt>)
 +
* <tt>.dsk</tt> format in <tt>emul/dsk/</tt> folder (image of a disk containing your program)
  
 
== Plain ROM program ==
 
== Plain ROM program ==
{| class="wikitable"
+
{{IMG|raw.githubusercontent.com/aoineko-fr/MSXgl/main/engine/doc/img/target/rom_slot_32k.png|height:240px; margin:0.5em; float:right;|Exemple of default slot selection for a 32 KB plain ROM.}}
! Target !! Description
+
 
|-
+
Binary program to be written into a ROM from 8 to 64 KB and executed from a cartridge.
| <tt>ROM_8K</tt> || 8 KB ROM in page 1 (4000h ~ 5FFFh)
+
{{:Target/Plain ROM }}
|-
+
 
| <tt>ROM_8K_P2</tt> || 8 KB ROM in page 2 (8000h ~ 9FFFh)
+
See also: [[Create a plain ROM]].
|-
+
 
| <tt>ROM_16K</tt> || 16 KB ROM in page 1 (4000h ~ 7FFFh)
+
The [[Build tool]] deployment step places your final program in <tt>emul/rom/</tt> folder.
|-
 
| <tt>ROM_16K_P2</tt> || 16 KB ROM in page 2 (8000h ~ BFFFh)
 
|-
 
| <tt>ROM_32K</tt> || 32 KB ROM in page 1&2 (4000h ~ BFFFh)
 
|-
 
| <tt>ROM_48K</tt> || 48 KB ROM in page 0-2 (0000h ~ BFFFh)
 
|-
 
| <tt>ROM_48K_ISR</tt> || 48 KB ROM in page 0-2 (0000h ~ BFFFh) with ISR replacement
 
|-
 
| <tt>ROM_64K</tt> || 64 KB ROM in page 0-3 (0000h ~ FFFFh)
 
|-
 
| <tt>ROM_64K_ISR</tt> || 64 KB ROM in page 0-3 (0000h ~ FFFFh) with ISR replacement
 
|-
 
| <tt>ROM</tt> || Alias for <tt>ROM_32K</tt>
 
|}
 
  
 
== Mapped ROM program ==
 
== Mapped ROM program ==
 +
{{IMG|raw.githubusercontent.com/aoineko-fr/MSXgl/main/engine/doc/img/target/rom_slot_ascii8_128.png|height:240px; margin:0.5em; float:right;|Example of slot and segment selection for a 128 KB ASCII-8 mapped ROM.}}
  
 
<u>Note</u>: ''"MegaROM" refers to a ROM of 128 KB or more. Even though they are not widely supported, there is nothing to prevent you from creating a 64 KB ROM using a mapper. We therefore prefer to use the term Mapped ROM here rather than MegaROM.''
 
<u>Note</u>: ''"MegaROM" refers to a ROM of 128 KB or more. Even though they are not widely supported, there is nothing to prevent you from creating a 64 KB ROM using a mapper. We therefore prefer to use the term Mapped ROM here rather than MegaROM.''
  
=== Setup ===
 
 
You can create program using one of the ROM mappers supported by MSXgl:
 
You can create program using one of the ROM mappers supported by MSXgl:
 
{| class="wikitable"
 
{| class="wikitable"
Line 66: Line 80:
 
|-
 
|-
 
| <tt>ROM_KONAMI_SCC</tt> || Konami MegaROM SCC (aka Konami5): 8 KB segments for a total of 64 KB to 2 MB
 
| <tt>ROM_KONAMI_SCC</tt> || Konami MegaROM SCC (aka Konami5): 8 KB segments for a total of 64 KB to 2 MB
 +
|-
 +
| <tt>ROM_NEO8</tt> || [[NEO mapper]]: 8 KB segments for a total up to 32 MB
 +
|-
 +
| <tt>ROM_NEO16</tt> || [[NEO mapper]]: 16 KB segments for a total up to 64 MB
 
|}
 
|}
  
In your <tt>build.bat</tt>, chose as <tt>target</tt> one of the above target type.
+
In your <tt>project_config.js</tt>, chose as <tt>target</tt> one of the above target type.
 
You can specify the ROM size (in KB) in the <tt>ROMSize</tt> variable. Default value is 128 (KB).
 
You can specify the ROM size (in KB) in the <tt>ROMSize</tt> variable. Default value is 128 (KB).
Any multiple value of the mapper's segment size is valid, but I recommend using powers of 2 values (64, 128, 256, etc.) to help emulators to autodetect the right mapper.
+
Any multiple value of the mapper's segment size is valid, but we recommend using powers of 2 values (64, 128, 256, etc.) to help emulators to autodetect the right mapper.
  
Some Build Tool configuration examples:
+
Some [[Build Tool]] configuration examples:
 +
<syntaxhighlight lang="js">
 +
//-- 128 KB ASCII-8 mapped-ROM
 +
target = "ROM_ASCII8";
 +
</syntaxhighlight>
  
//-- 128 KB ASCII-8 mapped-ROM
+
<syntaxhighlight lang="js">
target = ROM_ASCII8;
+
//-- 4 MB ASCII-16 mapped-ROM
 
+
target = "ROM_ASCII16";
//-- 4 MB ASCII-16 mapped-ROM
+
ROMSize = 4096;
target = ROM_ASCII16;
+
</syntaxhighlight>
ROMSize = 4096;
 
 
//-- 512 KB Konami SCC mapped-ROM
 
target = ROM_KONAMI_SCC;
 
ROMSize = 512;
 
  
See <tt>[[Samples#VGM|projects/samples/s_vgm]]</tt> sample for a concrete use case.
+
<syntaxhighlight lang="js">
 +
//-- 512 KB Konami SCC mapped-ROM
 +
target = "ROM_KONAMI_SCC";
 +
ROMSize = 512;
 +
</syntaxhighlight>
  
=== Build ===
+
For more detail:
Mapped-ROM use a system of sub-page (called "bank" here) the user can redirect to any segment of the ROM.
+
* [[Create a mapped ROM]] article.
Those banks are mapped to page #1 and #2 (4000h~BFFFh) of the memory space.
+
* <tt>[[Samples#VGM|projects/samples/s_vgm]]</tt> sample for a concrete use case.
The number of banks depends on the size of the mapper:
 
* 8 KB mappers have 4 banks:
 
** bank 0: 4000h~5FFFh
 
** bank 1: 6000h~7FFFh
 
** bank 2: 8000h~9FFFh
 
** bank 3: A000h~BFFFh
 
* 16 KB mappers have 2 banks:
 
** bank 0: 4000h~7FFFh
 
** bank 1: 8000h~BFFFh
 
  
The Build Tool build the first 32 KB of the mapped-ROM like a 32 KB plain ROM.
+
The [[Build tool]] deployment step places your final program in <tt>emul/rom/</tt> folder.
This represents the first 4 segments for a 8 KB mapper and the first 2 for a 16 KB mapper.
 
 
 
The following segments are added to the ROM by the Build Tool by searching for files with a particular nomenclature: <tt>''<project_name>''_s''<segment_number>''_b''<target_bank>''.c</tt>.
 
 
 
For example with a ASCII-8 ROM of 128 KB:
 
 
 
program.c          | Main program including segment #0~#3 (4*8 KB)
 
program_s4_b2.c    | Segment #4 to be used in bank #2 (8000h~9FFFh)
 
program_s5_b3.c    | Segment #5 to be used in bank #3 (A000h~BFFFh)
 
                    | No files found for segment #6 to #14: padding data added to the ROM
 
program_s15_b2.c  | Segment #15, the last one, to be used in bank #2 (8000h~9FFFh)
 
 
 
=== Segment selection ===
 
In your program, you can then select what segment is visible from what bank using the <tt>SET_BANK_SEGMENT(bank, seg)</tt> macro.
 
For example, to put segment 15 of the above example in bank 2, just use <tt>SET_BANK_SEGMENT(2, 15);</tt>
 
 
 
For information, at startup, the following segments are selected:
 
* 8 KB mappers:
 
** bank 0: segment 0
 
** bank 1: segment 1
 
** bank 2: segment 2
 
** bank 3: segment 3
 
* 16 KB mappers:
 
** bank 0: segment 0
 
** bank 1: segment 1
 
  
 
== Targets overview ==
 
== Targets overview ==
Line 134: Line 121:
 
!rowspan="2"| Description
 
!rowspan="2"| Description
 
|-
 
|-
! 0 !! 1 !! 2 !! 3
+
! P0 !! P1 !! P2 !! P3
 
|-
 
|-
 
| <tt>ROM_8K</tt> || BIOS || Cart || RAM || RAM || 8 KB ROM in page 1 (4000h ~ 5FFFh)
 
| <tt>ROM_8K</tt> || BIOS || Cart || RAM || RAM || 8 KB ROM in page 1 (4000h ~ 5FFFh)
Line 166: Line 153:
 
| <tt>DOS2</tt> || RAM || RAM || RAM || RAM || MSX-DOS 2 program (starting at 0100h)
 
| <tt>DOS2</tt> || RAM || RAM || RAM || RAM || MSX-DOS 2 program (starting at 0100h)
 
|-
 
|-
| <tt>BIN</tt> || BIOS || BASIC || RAM || RAM || BASIC binary program (starting at 8000h)
+
| <tt>DOS0</tt> || RAM || RAM || RAM || RAM || Direct program boot from disk (starting at 0100h)
 +
|-
 +
| <tt>BIN_DISK</tt> || BIOS || BASIC || RAM || RAM || BASIC binary on disk (starting at 8000h)
 +
|-
 +
| <tt>BIN_TAPE</tt> || BIOS || BASIC || RAM || RAM || BASIC binary on tape (starting at 8000h)
 
|-
 
|-
 
| <tt>BIN_USR</tt> || BIOS || BASIC || RAM || RAM || BASIC USR binary driver (starting at C000h)
 
| <tt>BIN_USR</tt> || BIOS || BASIC || RAM || RAM || BASIC USR binary driver (starting at C000h)
Line 174: Line 165:
  
 
For ROM or Basic program, the main function prototype is:
 
For ROM or Basic program, the main function prototype is:
void main();
+
<syntaxhighlight lang="c">
 +
void main();
 +
</syntaxhighlight>
  
For DOS1 target, this prototype can also be used to get command-line arguments:
+
For DOS1 target, this prototype can also be used to get command-line arguments (set <tt>DOSParseArg</tt> to allow arguments parsing):
void main(u8 argc, const c8** argv);
+
<syntaxhighlight lang="c">
 +
void main(u8 argc, const c8** argv);
 +
</syntaxhighlight>
  
 
For DOS2 target, this prototype can also be used to return a value du MSX-DOS:
 
For DOS2 target, this prototype can also be used to return a value du MSX-DOS:
u8 main();
+
<syntaxhighlight lang="c">
u8 main(u8 argc, const c8** argv);
+
u8 main();
 +
u8 main(u8 argc, const c8** argv);
 +
</syntaxhighlight>
  
 
* <tt>argc</tt>: Integer that contains the number of arguments present in <tt>argv</tt>. The <tt>argc</tt> parameter can be 0 if no parameter have been added to the command line.
 
* <tt>argc</tt>: Integer that contains the number of arguments present in <tt>argv</tt>. The <tt>argc</tt> parameter can be 0 if no parameter have been added to the command line.
 
* <tt>argv</tt>: Array of null-terminated strings representing command-line arguments entered by the user of the program.
 
* <tt>argv</tt>: Array of null-terminated strings representing command-line arguments entered by the user of the program.
 
* <tt>return</tt>: The return value can be catch by MSX-DOS 2 as an error code to know if program process succeeded or not.
 
* <tt>return</tt>: The return value can be catch by MSX-DOS 2 as an error code to know if program process succeeded or not.

Latest revision as of 22:40, 6 March 2024

The choice of the target determines the final format of the game: ROM, disk, etc.

It is a parameter used by the Build Tool to adapt your code to the target during the construction of the final program and to assemble the data to be compatible with the target.

The choice of the format is made in the project configuration file (project_config.js).

Here is a description of the different target formats available in MSXgl.

Basic program

Binary program to be executed from the BASIC environment using bload function.

Target Description
BIN_DISK BASIC binary program (starting at 8000h) on disk
BIN_TAPE BASIC binary program (starting at 8000h) on tape
BIN_USR BASIC USR binary driver (starting at C000h)
BIN Alias for BIN_DISK
BAS Alias for BIN_DISK

Note: The maximum size of a BASIC program is about 24 KB (including variables).

The Build tool deployment step places your final program in several formats:

  • .bin format in emul/bin/ folder
  • .dsk format in emul/dsk/ folder (image of a floppy disk containing your program)
  • .cas format in emul/cas/ folder (image of a tape cassette containing your program)

MSX-DOS program

Binary program to be executed from the MSX-DOS environment.

Target Description
DOS1 MSX-DOS 1 program (starting at 0100h)
DOS2 MSX-DOS 2 program (starting at 0100h)
DOS0 Direct program boot from disk (starting at 0100h)
DOS Alias for DOS1
BOOT Alias for DOS0

Note:

  • The maximum size of a MSX-DOS program is about 53 KB (including variables).
  • For "DOS0" target, maximum is 48 KB (excluding variables).

The Build tool deployment step places your final program in two formats:

  • .com format in emul/dosX/ folder (dos1, dos2 ou dos0)
  • .dsk format in emul/dsk/ folder (image of a disk containing your program)

Plain ROM program


Exemple of default slot selection for a 32 KB plain ROM.

Binary program to be written into a ROM from 8 to 64 KB and executed from a cartridge.

Target Description
ROM_8K 8 KB ROM in page 1 (4000h ~ 5FFFh)
ROM_8K_P2 8 KB ROM in page 2 (8000h ~ 9FFFh)
ROM_16K 16 KB ROM in page 1 (4000h ~ 7FFFh)
ROM_16K_P2 16 KB ROM in page 2 (8000h ~ BFFFh)
ROM_32K 32 KB ROM in page 1&2 (4000h ~ BFFFh)
ROM_48K 48 KB ROM in page 0-2 (0000h ~ BFFFh)
ROM_48K_ISR 48 KB ROM in page 0-2 (0000h ~ BFFFh) with ISR replacement
ROM_64K 64 KB ROM in page 0-3 (0000h ~ FFFFh)
ROM_64K_ISR 64 KB ROM in page 0-3 (0000h ~ FFFFh) with ISR replacement
ROM Alias for ROM_32K

See also: Create a plain ROM.

The Build tool deployment step places your final program in emul/rom/ folder.

Mapped ROM program


Example of slot and segment selection for a 128 KB ASCII-8 mapped ROM.

Note: "MegaROM" refers to a ROM of 128 KB or more. Even though they are not widely supported, there is nothing to prevent you from creating a 64 KB ROM using a mapper. We therefore prefer to use the term Mapped ROM here rather than MegaROM.

You can create program using one of the ROM mappers supported by MSXgl:

Target Description
ROM_ASCII8 ASCII-8: 8 KB segments for a total of 64 KB to 2 MB
ROM_ASCII16 ASCII-16: 16 KB segments for a total of 64 KB to 4 MB
ROM_KONAMI Konami MegaROM (aka Konami4): 8 KB segments for a total of 64 KB to 2 MB
ROM_KONAMI_SCC Konami MegaROM SCC (aka Konami5): 8 KB segments for a total of 64 KB to 2 MB
ROM_NEO8 NEO mapper: 8 KB segments for a total up to 32 MB
ROM_NEO16 NEO mapper: 16 KB segments for a total up to 64 MB

In your project_config.js, chose as target one of the above target type. You can specify the ROM size (in KB) in the ROMSize variable. Default value is 128 (KB). Any multiple value of the mapper's segment size is valid, but we recommend using powers of 2 values (64, 128, 256, etc.) to help emulators to autodetect the right mapper.

Some Build Tool configuration examples:

//-- 128 KB ASCII-8 mapped-ROM
target = "ROM_ASCII8";
//-- 4 MB ASCII-16 mapped-ROM
target = "ROM_ASCII16";
ROMSize = 4096;
//-- 512 KB Konami SCC mapped-ROM
target = "ROM_KONAMI_SCC";
ROMSize = 512;

For more detail:

The Build tool deployment step places your final program in emul/rom/ folder.

Targets overview

Target Selected at boot Description
P0 P1 P2 P3
ROM_8K BIOS Cart RAM RAM 8 KB ROM in page 1 (4000h ~ 5FFFh)
ROM_8K_P2 BIOS RAM Cart RAM 8 KB ROM in page 2 (8000h ~ 9FFFh)
ROM_16K BIOS Cart RAM RAM 16 KB ROM in page 1 (4000h ~ 7FFFh)
ROM_16K_P2 BIOS RAM Cart RAM 16 KB ROM in page 2 (8000h ~ BFFFh)
ROM_32K BIOS Cart Cart RAM 32 KB ROM in page 1&2 (4000h ~ BFFFh)
ROM_48K BIOS Cart Cart RAM 48 KB ROM in page 0-2 (0000h ~ BFFFh)
ROM_48K_ISR Cart Cart Cart RAM 48 KB ROM in page 0-2 (0000h ~ BFFFh) with ISR replacement
ROM_64K BIOS Cart Cart RAM 64 KB ROM in page 0-3 (0000h ~ FFFFh)
ROM_64K_ISR Cart Cart Cart RAM 64 KB ROM in page 0-3 (0000h ~ FFFFh) with ISR replacement
ROM_ASCII8 BIOS Cart Cart RAM ASCII-8: 8KB segments for a total of 64 KB to 2 MB
ROM_ASCII16 BIOS Cart Cart RAM ASCII-16: 16KB segments for a total of 64 KB to 4 MB
ROM_KONAMI BIOS Cart Cart RAM Konami MegaROM (aka Konami4): 8 KB segments for a total of 64 KB to 2 MB
ROM_KONAMI_SCC BIOS Cart Cart RAM Konami MegaROM SCC (aka Konami5): 8 KB segments for a total of 64 KB to 2 MB
DOS1 RAM RAM RAM RAM MSX-DOS 1 program (starting at 0100h)
DOS2 RAM RAM RAM RAM MSX-DOS 2 program (starting at 0100h)
DOS0 RAM RAM RAM RAM Direct program boot from disk (starting at 0100h)
BIN_DISK BIOS BASIC RAM RAM BASIC binary on disk (starting at 8000h)
BIN_TAPE BIOS BASIC RAM RAM BASIC binary on tape (starting at 8000h)
BIN_USR BIOS BASIC RAM RAM BASIC USR binary driver (starting at C000h)

Main

For ROM or Basic program, the main function prototype is:

void main();

For DOS1 target, this prototype can also be used to get command-line arguments (set DOSParseArg to allow arguments parsing):

void main(u8 argc, const c8** argv);

For DOS2 target, this prototype can also be used to return a value du MSX-DOS:

u8 main();
u8 main(u8 argc, const c8** argv);
  • argc: Integer that contains the number of arguments present in argv. The argc parameter can be 0 if no parameter have been added to the command line.
  • argv: Array of null-terminated strings representing command-line arguments entered by the user of the program.
  • return: The return value can be catch by MSX-DOS 2 as an error code to know if program process succeeded or not.