Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. SYSEXIT = 1
  2. EXIT_SUCCESS = 0
  3. .code32
  4.  
  5.  
  6. .data
  7. liczba1: .float -1.1
  8. druga: .float 1.423
  9. trzecia: .float 0.0
  10.  
  11.  
  12.  
  13. .text
  14.  
  15. .global _start
  16.  
  17.  
  18.  
  19. _start:
  20. fld liczba1
  21. jmp end
  22.  
  23.  
  24. end:
  25. mov $SYSEXIT, %eax
  26. mov $EXIT_SUCCESS, %ebx
  27. int $0x80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement