fork download
  1. section .data
  2. num1 db 8
  3. num2 db 3
  4. result db 0
  5.  
  6. section .text
  7. global _start
  8.  
  9. _start:
  10. mov al, [num1]
  11. mul byte [num2]
  12. mov [result], al
  13.  
  14. mov eax, 1
  15. xor ebx, ebx
  16. int 0x80
  17.  
  18.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty