Advertisement
Guest User

Untitled

a guest
May 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. .data
  2. menu: .asciiz "Menu:
  3. 1) Swap two records
  4. 2) Exit
  5. Please choose one of the above options: "
  6.  
  7. user_input: .asciiz "Enter in the name, age and ID for 10 students please:"
  8. new_line: .asciiz "\n"
  9. record_one: .asciiz "Record 1: "
  10. record_two: .asciiz "Record 2: "
  11. record_three: .asciiz "Record 3: "
  12. record_four: .asciiz "Record 4: "
  13. record_five: .asciiz "Record 5: "
  14. record_six: .asciiz "Record 6: "
  15. record_seven: .asciiz "Record 7: "
  16. record_eight: .asciiz "Record 8: "
  17. record_nine: .asciiz "Record 9: "
  18. record_ten: .asciiz "Record 10: "
  19.  
  20. which_record: .asciiz "Which record do you select first? "
  21. swap_record: .asciiz "Which record do you want to swap it with? "
  22.  
  23. #10 inputs * 4 bytes per integer * 4 bytes per integer *
  24. array: .data 100
  25.  
  26. .text
  27. main:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement