My college gave me a exercise:
1. Create a new document in Jasmin
2. Use the AL-Register to to add 9 to 8.
3. Subtract 2.
4. Divide by 7.
My solution is:
mov al,9
add al,8
sub al,2
But how do I divide by 7? I tried something like div al,7
but that doesn't work.