Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %include "io.inc"
- section .text
- REC:
- push ebp
- mov ebp, esp
- push ebx
- GET_DEC 4, ebx
- cmp ebx, 0
- je .end
- call REC
- PRINT_DEC 4, ebx
- PRINT_STRING ' '
- .end:
- pop ebx
- mov esp, ebp
- pop ebp
- ret
- global CMAIN
- CMAIN:
- call REC
- xor eax, eax
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement