<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wikiti.brandonw.net/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wikiti.brandonw.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=68.41.6.124</id>
		<title>WikiTI - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wikiti.brandonw.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=68.41.6.124"/>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=Special:Contributions/68.41.6.124"/>
		<updated>2026-04-05T20:19:54Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.5</generator>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:OS:RST_Routines</id>
		<title>83Plus:OS:RST Routines</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:OS:RST_Routines"/>
				<updated>2005-06-03T04:30:04Z</updated>
		
		<summary type="html">&lt;p&gt;68.41.6.124: /* Remarks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:OS_Information|RST Routines]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
The Z80 restart instruction, or &amp;lt;code&amp;gt;RST&amp;lt;/code&amp;gt;, can be used instead of a B_CALL for some system entry points. The advantage is that using the RST instruction takes only one byte, instead of the three bytes required for a B_CALL, and is very quick when compared with the relatively large overhead inherent of a B_CALL.&lt;br /&gt;
&lt;br /&gt;
== RST Routines ==&lt;br /&gt;
All the RST routines work exactly the same as the corresponding B_CALLs:&lt;br /&gt;
{| border=&amp;quot;0&amp;quot;&lt;br /&gt;
| '''B_CALL''' || '''RST'''&lt;br /&gt;
|-[[83Plus:BCALLs:412F|OP1ToOP2]] || rOP1ToOP2&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:42F1|FindSym]] || rFindSym&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:43BA|PushRealO1]] || rPushRealO1&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:417A|Mov9ToOP1]] || rMov9ToOP1&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:4072|FPAdd]] || rFPAdd&lt;br /&gt;
|}&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;rst rFPAdd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Equates ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
rOP1ToOP2   EQU  08h&lt;br /&gt;
rFindSym    EQU  10h&lt;br /&gt;
rPushRealO1 EQU  18h&lt;br /&gt;
rMov9ToOP1  EQU  20h&lt;br /&gt;
rFPAdd      EQU  30h&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&lt;br /&gt;
You cannot define your own RSTs; they are part of the operating system.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;rst 00 is the OS reset&lt;br /&gt;
rst 28h is BCALL&lt;br /&gt;
rst 38h is the interrupt routine&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>68.41.6.124</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:OS:RST_Routines</id>
		<title>83Plus:OS:RST Routines</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:OS:RST_Routines"/>
				<updated>2005-06-03T04:29:48Z</updated>
		
		<summary type="html">&lt;p&gt;68.41.6.124: /* Remarks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:OS_Information|RST Routines]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
The Z80 restart instruction, or &amp;lt;code&amp;gt;RST&amp;lt;/code&amp;gt;, can be used instead of a B_CALL for some system entry points. The advantage is that using the RST instruction takes only one byte, instead of the three bytes required for a B_CALL, and is very quick when compared with the relatively large overhead inherent of a B_CALL.&lt;br /&gt;
&lt;br /&gt;
== RST Routines ==&lt;br /&gt;
All the RST routines work exactly the same as the corresponding B_CALLs:&lt;br /&gt;
{| border=&amp;quot;0&amp;quot;&lt;br /&gt;
| '''B_CALL''' || '''RST'''&lt;br /&gt;
|-[[83Plus:BCALLs:412F|OP1ToOP2]] || rOP1ToOP2&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:42F1|FindSym]] || rFindSym&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:43BA|PushRealO1]] || rPushRealO1&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:417A|Mov9ToOP1]] || rMov9ToOP1&lt;br /&gt;
|-&lt;br /&gt;
|[[83Plus:BCALLs:4072|FPAdd]] || rFPAdd&lt;br /&gt;
|}&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;rst rFPAdd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Equates ==&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
rOP1ToOP2   EQU  08h&lt;br /&gt;
rFindSym    EQU  10h&lt;br /&gt;
rPushRealO1 EQU  18h&lt;br /&gt;
rMov9ToOP1  EQU  20h&lt;br /&gt;
rFPAdd      EQU  30h&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&lt;br /&gt;
You cannot define your own RSTs; they are part of the operating system.&lt;br /&gt;
rst 00 is the OS reset&lt;br /&gt;
rst 28h is BCALL&lt;br /&gt;
rst 38h is the interrupt routine&lt;/div&gt;</summary>
		<author><name>68.41.6.124</name></author>	</entry>

	</feed>