Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
naoto64 authored Nov 25, 2023
1 parent 35ef93f commit f2f33b9
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,36 @@
</table>

## 命令セット
|命令|機械語|説明|
|---|---|---|
|ADD A, Im|0|AレジスタにIm(イミディエイトデータ)を加算する。|
|JMP Im|1|Imで指定した先の番地へジャンプする。|
<table>
<thead>
<tr>
<th>命令</th>
<th>機械語</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td>ADD A, Im</td>
<td>0</td>
<td>AレジスタにIm(イミディエイトデータ)を加算する。</td>
</tr>
<tr>
<td>JMP Im</td>
<td>1</td>
<td>Imで指定した先の番地へジャンプする。</td>
</tr>
</tbody>
</table>

## プログラム例
### Aレジスタに1を加算し続けるプログラム
Aレジスタに1を加算し続けるプログラム
```text:
ADD A, 1
JMP 0
```

### Aレジスタに1を加算するだけのプログラム
Aレジスタに1を加算するだけのプログラム
```text:
ADD A, 1
JMP 1
Expand Down

0 comments on commit f2f33b9

Please sign in to comment.