loop.asm 217 B

123456789101112131415161718
  1. global _start
  2. %include "header.inc"
  3. mov ecx, 0x10042
  4. mov eax, 0
  5. start1:
  6. inc eax
  7. loop start1
  8. mov ecx, 0x10005
  9. mov ebx, 0
  10. start2:
  11. inc ebx
  12. db 67h
  13. loop start2
  14. %include "footer.inc"