Skip to content

Commit 796f9fa

Browse files
committed
Update README to include MUL instruction
1 parent e73e3e0 commit 796f9fa

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
---
33
#### A basic ARM emulator written in Golang
44
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/coderick14/ARMed/issues)
5-
[![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/coderick14/ARMed/)
6-
[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)
5+
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/coderick14/ARMed)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
77
[![GoDoc](https://godoc.org/github.com/coderick14/ARMed?status.svg)](https://godoc.org/github.com/coderick14/ARMed)
88

99
![ARMed logo](https://github.com/coderick14/ARMed/blob/dev/images/logo.png "ARMed - an ARM emulator written in Golang" )
@@ -64,6 +64,12 @@ Example : SUB X1, X2, X3
6464
Meaning : X1 = X2 - X3
6565
```
6666

67+
```
68+
INSTRUCTION : MULTIPLICATION
69+
Example : MUL X1, X2, X3
70+
Meaning : X1 = X2 * X3
71+
```
72+
6773
```
6874
INSTRUCTION : ADD IMMEDIATE
6975
Example : ADDI X1, X2, #40
@@ -256,4 +262,4 @@ INSTRUCTION : UNCONDITIONAL BRANCH WITH LINK
256262
Example : BL label
257263
Meaning : X30 = PC + 4; go to label
258264
Comments : For procedure call (PC-relative)
259-
```
265+
```

0 commit comments

Comments
 (0)