Skip to content

Commit

Permalink
Merge branch 'main' into unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TollyH committed Oct 22, 2023
2 parents d1da4f4 + 95ee127 commit 2572e16
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
Binary file modified Documentation/ReferenceManual/ReferenceManual.docx
Binary file not shown.
10 changes: 5 additions & 5 deletions Documentation/ReferenceManual/ReferenceManual.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
<body>
<h1 id="assembly-reference-manual">AssEmbly Reference Manual</h1>
<p>Applies to versions: <code>2.0.0</code></p>
<p>Last revised: 2023-09-30</p>
<p>Last revised: 2023-10-22</p>
<h2 id="introduction">Introduction</h2>
<p>AssEmbly is a custom processor architecture and assembly language
implemented in .NET. It is designed to simplify the process of learning
Expand Down Expand Up @@ -6409,31 +6409,31 @@ <h3 id="floating-point-extension-set">Floating Point Extension Set</h3>
<td>Register, Register</td>
<td>Calculate the logarithm of a register with the base from another
register</td>
<td><code>0x50</code></td>
<td><code>0x60</code></td>
</tr>
<tr class="odd">
<td><code>FLPT_LOG</code></td>
<td>Logarithm</td>
<td>Register, Literal</td>
<td>Calculate the logarithm of a register with the base from a
literal</td>
<td><code>0x51</code></td>
<td><code>0x61</code></td>
</tr>
<tr class="even">
<td><code>FLPT_LOG</code></td>
<td>Logarithm</td>
<td>Register, Address</td>
<td>Calculate the logarithm of a register with the base from the
contents of memory at an address in a label</td>
<td><code>0x52</code></td>
<td><code>0x62</code></td>
</tr>
<tr class="odd">
<td><code>FLPT_LOG</code></td>
<td>Logarithm</td>
<td>Register, Pointer</td>
<td>Calculate the logarithm of a register with the base from the
contents of memory at an address in a register</td>
<td><code>0x53</code></td>
<td><code>0x63</code></td>
</tr>
<tr class="even">
<td><strong>Console Writing</strong></td>
Expand Down
10 changes: 5 additions & 5 deletions Documentation/ReferenceManual/ReferenceManual.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Applies to versions: `2.0.0`

Last revised: 2023-09-30
Last revised: 2023-10-22

## Introduction

Expand Down Expand Up @@ -2617,10 +2617,10 @@ Extension set number `0x02`, opcodes start with `0xFF, 0x02`.
| `FLPT_POW` | Exponentiation | Register, Literal | Calculate the value of a register raised to the power of a literal | `0x51` |
| `FLPT_POW` | Exponentiation | Register, Address | Calculate the value of a register raised to the power of the contents of memory at an address in a label | `0x52` |
| `FLPT_POW` | Exponentiation | Register, Pointer | Calculate the value of a register raised to the power of the contents of memory at an address in a register | `0x53` |
| `FLPT_LOG` | Logarithm | Register, Register | Calculate the logarithm of a register with the base from another register | `0x50` |
| `FLPT_LOG` | Logarithm | Register, Literal | Calculate the logarithm of a register with the base from a literal | `0x51` |
| `FLPT_LOG` | Logarithm | Register, Address | Calculate the logarithm of a register with the base from the contents of memory at an address in a label | `0x52` |
| `FLPT_LOG` | Logarithm | Register, Pointer | Calculate the logarithm of a register with the base from the contents of memory at an address in a register | `0x53` |
| `FLPT_LOG` | Logarithm | Register, Register | Calculate the logarithm of a register with the base from another register | `0x60` |
| `FLPT_LOG` | Logarithm | Register, Literal | Calculate the logarithm of a register with the base from a literal | `0x61` |
| `FLPT_LOG` | Logarithm | Register, Address | Calculate the logarithm of a register with the base from the contents of memory at an address in a label | `0x62` |
| `FLPT_LOG` | Logarithm | Register, Pointer | Calculate the logarithm of a register with the base from the contents of memory at an address in a register | `0x63` |
| **Console Writing** |||||
| `FLPT_WCN` | Write Number to Console | Register | Write a register value as a signed decimal number to the console | `0x70` |
| `FLPT_WCN` | Write Number to Console | Literal | Write a literal value as a signed decimal number to the console | `0x71` |
Expand Down
10 changes: 5 additions & 5 deletions Documentation/ReferenceManual/ReferenceManual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AssEmbly Reference Manual

Applies to versions: 2.0.0

Last revised: 2023-09-30
Last revised: 2023-10-22

Introduction

Expand Down Expand Up @@ -4991,27 +4991,27 @@ Extension set number 0x02, opcodes start with 0xFF, 0x02.
at an address in a
register

FLPT_LOG Logarithm Register, Calculate the 0x50
FLPT_LOG Logarithm Register, Calculate the 0x60
Register logarithm of a
register with the
base from another
register

FLPT_LOG Logarithm Register, Calculate the 0x51
FLPT_LOG Logarithm Register, Calculate the 0x61
Literal logarithm of a
register with the
base from a
literal

FLPT_LOG Logarithm Register, Calculate the 0x52
FLPT_LOG Logarithm Register, Calculate the 0x62
Address logarithm of a
register with the
base from the
contents of memory
at an address in a
label

FLPT_LOG Logarithm Register, Calculate the 0x53
FLPT_LOG Logarithm Register, Calculate the 0x63
Pointer logarithm of a
register with the
base from the
Expand Down

0 comments on commit 2572e16

Please sign in to comment.