solutions
parent
6407f8f478
commit
de4ee10ee2
@ -0,0 +1,46 @@
|
|||||||
|
# zero
|
||||||
|
|
||||||
|
```
|
||||||
|
xor eax, eax
|
||||||
|
```
|
||||||
|
|
||||||
|
# one
|
||||||
|
```
|
||||||
|
xor eax, eax
|
||||||
|
inc eax
|
||||||
|
```
|
||||||
|
|
||||||
|
# next
|
||||||
|
```
|
||||||
|
inc ax
|
||||||
|
```
|
||||||
|
|
||||||
|
# prev
|
||||||
|
```
|
||||||
|
dec ax
|
||||||
|
```
|
||||||
|
|
||||||
|
# sum
|
||||||
|
```
|
||||||
|
mov dx, ax
|
||||||
|
add dx, bx
|
||||||
|
```
|
||||||
|
|
||||||
|
# sub
|
||||||
|
```
|
||||||
|
mov rdx, rax
|
||||||
|
sub rdx, rbx
|
||||||
|
```
|
||||||
|
|
||||||
|
# imul
|
||||||
|
```
|
||||||
|
imul bl
|
||||||
|
mov dx, ax
|
||||||
|
```
|
||||||
|
|
||||||
|
# idiv
|
||||||
|
```
|
||||||
|
cwd
|
||||||
|
idiv bx
|
||||||
|
mov dx, ax
|
||||||
|
```
|
Reference in New Issue