Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .486
- .model flat, stdcall
- INCLUDE stdlib.inc
- INCLUDELIB msvcrt.lib
- .Data
- a dd ?
- b dd ?
- d dd ?
- .CODE
- main:
- mov eax,a
- cmp eax, b
- jle l2
- l1:
- mov d,eax
- jmp exxit
- l2:
- mov eax,b
- mov d,eax
- exxit:
- call exit
- END main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement