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 b28a074 commit c085c09
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,20 @@
|ADD A, Im|0|AレジスタにIm(イミディエイトデータ)を加算する。|
|JMP Im|1|Imで指定した先の番地へジャンプする。|

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

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

```text:何もしないプログラム
### 何もしないプログラム
```text:
JMP 0
```

Expand Down

0 comments on commit c085c09

Please sign in to comment.