暫無描述

text_multichoice.s 577B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .text
  2. .align 2
  3. .thumb
  4. .global multichoice_array
  5. multichoice_array:
  6. .word smc_yes_no
  7. .word 2
  8. .word smc_difficulty
  9. .word 3
  10. .word smc_left_right
  11. .word 2
  12. .word smc_red_blue
  13. .word 2
  14. smc_yes_no:
  15. .word str_yes
  16. .word 0
  17. .word str_no
  18. .word 0
  19. smc_difficulty:
  20. .word str_beginner
  21. .word 0
  22. .word str_intermediate
  23. .word 0
  24. .word str_expert
  25. .word 0
  26. smc_left_right:
  27. .word str_left
  28. .word 0
  29. .word str_right
  30. .word 0
  31. smc_red_blue:
  32. .word str_redstone
  33. .word 0
  34. .word str_blaustone
  35. .word 0