<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Sun, 05 Apr 2026 09:36:03 +0200 -->

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Wiki MSX Village]]></title>
		<atom:link href="https://msxvillage.fr/syndication/rss/wiki/16" rel="self" type="application/rss+xml"/>
		<link>https://www.msxvillage.fr</link>
		<description><![CDATA[Derniers articles de la catégorie M]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[MERGE]]></title>
			<link>https://msxvillage.fr/wiki/merge</link>
			<guid>https://msxvillage.fr/wiki/merge</guid>
			<description><![CDATA[<fieldset class="formatter-container formatter-fieldset" style=""><legend><strong><span style="font-size: 20px;">MERGE</span></strong></legend><div class="formatter-content">Commande qui permet la fusion de deux fichiers.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Syntaxe</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><a href="https://msxvillage.fr/wiki/merge">MERGE</a> "[nom de lecteur:] nom de fichier"</td>
     </tr>
</table><br />
<br />
Les crochets indiquent un contenu optionnel.<br />
<br />
<a href="https://msxvillage.fr/wiki/merge">MERGE</a> ne peut fusionner que le programme résidant en mémoire avec un programme enregistré en format ASCII.<br />
<br />
Si dans les deux programmes des numéros de ligne sont similaires, alors ce sera la ligne du programme initial qui sera remplacée par celle provenant du fichier à fusionner.<br />
<br />
Le programme ainsi créé reste en RAM jusqu'à la prochaine sauvegarde.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Exemple et résultat en images</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><img src="https://msxvillage.fr/wiki/images/merge.jpg" alt="" class="valign_" /></td>
     </tr>
</table><br />
<br />
</div></fieldset>]]></description>
			<pubDate>Mon, 09 Aug 2010 14:52:02 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[MOTOR]]></title>
			<link>https://msxvillage.fr/wiki/motor</link>
			<guid>https://msxvillage.fr/wiki/motor</guid>
			<description><![CDATA[<fieldset class="formatter-container formatter-fieldset" style=""><legend><strong><span style="font-size: 20px;">MOTOR</span></strong></legend><div class="formatter-content">Instruction qui permet de commander le lecteur de cassettes.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Syntaxe</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><a href="https://msxvillage.fr/wiki/motor">MOTOR</a> [ON][OFF]</td>
     </tr>
</table><br />
<br />
Les crochets indiquent un contenu optionnel.<br />
<br />
<a href="https://msxvillage.fr/wiki/motor">MOTOR</a> ON permet de mettre le lecteur de cassettes en marche.<br />
<a href="https://msxvillage.fr/wiki/motor">MOTOR</a> OFF permet de le couper.<br />
<br />
Si on omet les termes ON et OFF, l'état du lecteur cassettes passera à l'opposé de celui dans lequel il se trouve.<br />
<br />
</div></fieldset>]]></description>
			<pubDate>Tue, 27 Oct 2009 11:33:45 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[MID$]]></title>
			<link>https://msxvillage.fr/wiki/mid</link>
			<guid>https://msxvillage.fr/wiki/mid</guid>
			<description><![CDATA[<fieldset class="formatter-container formatter-fieldset" style=""><legend><strong><span style="font-size: 20px;">MID$</span></strong></legend><div class="formatter-content">Fonction qui renvoie une partie d'une chaîne de caractères, ou instruction qui permet de modifier le contenu d'une chaîne de caractères à l'aide d'une autre.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Syntaxes</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><a href="https://msxvillage.fr/wiki/mid">MID$</a> (chaîne de caractères, indice début de sous-chaîne[, longueur de sous-chaîne])<br />
                               <a href="https://msxvillage.fr/wiki/mid">MID$</a> (chaîne de caractères, indice du premier caractère à modifier [, nombre de caractères à prendre de l'autre chaîne])</td>
     </tr>
</table><br />
<br />
Les crochets indiquent un contenu optionnel.<br />
<br />
La première syntaxe correspond à la fonction. Si la longueur de sous-chaîne est omise, la partie renvoyée sera toute la chaîne initiale à compter de l'indice de début.<br />
<br />
La deuxième syntaxe correspond à l'instruction. Si le nombre de caractères à prendre de l'autre chaîne est omis, le nombre de caractères pris à cette chaîne sera le reste des caractères de la chaîne à modifier plus le caractère initial (ex : sur une chaîne de 8 caractères, si on modifie à compter du caractère 4, on aura au maximum 5 caractères modifiables : 4, 5, 6, 7 et 8).<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Exemple</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">10 A$= « MSX VILALGE »<br />
                               20 <a href="https://msxvillage.fr/wiki/print">PRINT</a> <a href="https://msxvillage.fr/wiki/mid">MID$</a> (A$, 5, 3)<br />
                               30 <a href="https://msxvillage.fr/wiki/mid">MID$</a> (A$, 7, 3)= « LLA »<br />
                               40 <a href="https://msxvillage.fr/wiki/print">PRINT</a> A$<br />
                               50 <a href="https://msxvillage.fr/wiki/end">END</a></td>                            
             </tr>
</table><br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Résultat</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Le programme va d'abord afficher la portion de la chaîne A$, soit « VIL ». Ensuite, l'erreur de frappe dans la chaîne initiale sera réparée par la ligne 30. Au final, la chaîne corrigée « MSX VILLAGE » sera affichée. </td>
    </tr>
</table><br />
<br />
</div></fieldset>]]></description>
			<pubDate>Tue, 27 Oct 2009 11:11:08 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[MAXFILES]]></title>
			<link>https://msxvillage.fr/wiki/maxfiles</link>
			<guid>https://msxvillage.fr/wiki/maxfiles</guid>
			<description><![CDATA[<fieldset class="formatter-container formatter-fieldset" style=""><legend><strong><span style="font-size: 20px;">MAXFILES</span></strong></legend><div class="formatter-content">Instruction qui permet de définir le nombre maximal de fichiers qui peuvent être ouverts en même temps.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Syntaxe</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><a href="https://msxvillage.fr/wiki/maxfiles">MAXFILES</a> = nombre de fichiers</td>
     </tr>
</table><br />
<br />
Le nombre de fichiers doit être compris entre 1et 15. Ce nombre est restreint à 6 pour les fichiers sur disquette.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Exemple</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><a href="https://msxvillage.fr/wiki/maxfiles">MAXFILES</a>=2</td>
             </tr>
</table><br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Résultat</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Le nombre maximal de fichiers ouvrables simultanément sera de 2.</td>
    </tr>
</table><br />
<br />
</div></fieldset>]]></description>
			<pubDate>Mon, 26 Oct 2009 15:54:33 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[M]]></title>
			<link>https://msxvillage.fr/wiki/m</link>
			<guid>https://msxvillage.fr/wiki/m</guid>
			<description><![CDATA[Liste des instructions commençant par M :]]></description>
			<pubDate>Tue, 20 Oct 2009 10:58:13 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[MOD]]></title>
			<link>https://msxvillage.fr/wiki/mod</link>
			<guid>https://msxvillage.fr/wiki/mod</guid>
			<description><![CDATA[<fieldset class="formatter-container formatter-fieldset" style=""><legend><strong><span style="font-size: 20px;">MOD</span></strong></legend><div class="formatter-content">Opérateur mathématique qui permet le renvoi du reste de la division entière.<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Syntaxe</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">nombre 1 <a href="https://msxvillage.fr/wiki/mod">MOD</a> nombre2</td>
    </tr>
</table><br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Exemple</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">10 A=18<br />
                        20 B= 7<br />
                        30 <a href="https://msxvillage.fr/wiki/print">PRINT</a> A/B : <a href="https://msxvillage.fr/wiki/rem">REM</a> quotient de la division entière<br />
                        40 <a href="https://msxvillage.fr/wiki/print">PRINT</a> A <a href="https://msxvillage.fr/wiki/mod">MOD</a> B : <a href="https://msxvillage.fr/wiki/rem">REM</a> reste de la division entière<br />
                        50 <a href="https://msxvillage.fr/wiki/end">END</a></td>
             </tr>
</table><br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <th class="formatter-table-head">Résultat</th>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Le programme affichera d'abord le quotient, soit 18/7 = 2, puis le reste, soit 4.</td>
             </tr>
</table><br />
</div></fieldset>]]></description>
			<pubDate>Thu, 15 Oct 2009 14:20:57 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
