Files
WebsiteContent/specs/emulator/index.html

24 lines
701 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<body>
<h1>Emulator Reference</h2>
<p>You can see the supported instructions below</p>
<table style="width:100%">
<tr>
<th>Instruction Type</th>
<th>Description</th>
</tr>
<tr>
<td><a href="/mov">MOV</a></td>
<td>"The MOV instruction performs basic load data and store data operations between memory and the processors
registers and data movement operations between registers." (Intel SDM, p. 185)</td>
</tr>
<tr>
<td>NOP</td>
<td>Does nothing. It is always exactly 1 byte and is represented as a zero-byte.</td>
</tr>
<tr>
<td>HLT</td>
<td>Halts the emulator, performs an exit(0).</td>
</tr>
</table>
</body>