Make description header of ADD instruction fit std formatting

arg3nt 2019-09-30 23:28:23 -07:00
parent c3082fb2f0
commit 2d6d76bbe5

@ -149,7 +149,7 @@ Some instructions will change certain flags based on their result. These are in
#### Description
`ADD` replaces the destination operand with the sum of the source and destination operands. It sets the carry flag if there is an overflow.
### Pseudo code
#### Pseudo code
```py
destination = destination + source
```