hex_data.s 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. hex_button_list
  2. dc.l scroll_hex_up_button,scroll_hex_down_button
  3. dc.l hex_quit_button,-1
  4. scroll_hex_up_button
  5. dc.w BUTTON_1
  6. dc.w 130
  7. dc.w WINDOW ;frame type
  8. dc.b CUSTOM_BUTTON+HOLD_BUTTON ;standard
  9. dc.b NOT_DEPRESSED
  10. dc.b 0
  11. dc.b 0 ;not used
  12. dc.l arrow_up ;not used
  13. dc.l 0 ;not used
  14. dc.l scroll_window_up
  15. dc.b 0
  16. EVEN
  17. scroll_hex_down_button
  18. dc.w BUTTON_1+25
  19. dc.w 130
  20. dc.w WINDOW ;frame type
  21. dc.b CUSTOM_BUTTON+HOLD_BUTTON ;standard
  22. dc.b NOT_DEPRESSED
  23. dc.b 0
  24. dc.b 0 ;not used
  25. dc.l arrow_down ;not used
  26. dc.l 0 ;not used
  27. dc.l scroll_window_down
  28. dc.b 0
  29. EVEN
  30. hex_quit_button
  31. dc.w BUTTON_1+50
  32. dc.w 130
  33. dc.w WINDOW ;frame type
  34. dc.b CUSTOM_BUTTON ;standard
  35. dc.b NOT_DEPRESSED
  36. dc.b 0
  37. dc.b 0 ;not used
  38. dc.l cancel_custom_button ;not used
  39. dc.l 0 ;not used
  40. dc.l quit_hex_routine
  41. dc.b 0
  42. EVEN