swinch

credits hex

Feb 26th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. START AT 3F:DBB0
  2. END AT 3F:E89B
  3.  
  4. Put an E3 between each segment. So, E3<#1>E3<#2>E3<#3>E3<#4>.........
  5.  
  6. 1) Enter as many as you want to appear first:
  7. 12 <index #> <X> <Y> <font/position code><scroll in time>
  8.  
  9. 2) End with:
  10. 00 0F 02 0B 16 00 09 0B 04 10 <delay> 00
  11.  
  12. 3) Enter as many as you want to appear second:
  13. 12 <index #> <X> <Y> <font/position code><scroll in time>
  14.  
  15. 4) End with:
  16. 00 0F 02 0B 16 00 01 03 04 10 <delay> 01
  17.  
  18. 5) Then:
  19. 00 0F 02 16 0B 00 01 03 04 10 <delay> 00
  20.  
  21. 6) Clear as many as you want to clear first:
  22. 12 00 <X> <Y> <font/position code><scroll in time>
  23.  
  24. 7) End with:
  25. 00 0F 02 16 0B 00 09 0B 04 10 <delay> 00
  26.  
  27. 8) Clear as many as you want to clear second:
  28. 12 00 <X> <Y> <font/position code><scroll in time>
  29.  
  30.  
  31. font/position codes that are used [there are many others]
  32.  
  33. 00 = white text at top
  34. 08 = green text at top
  35. -----------------------
  36. C0 = white in 1st position
  37. 81 = white in 2nd position
  38. C2 = white in 3rd position
  39. 49 = green in 2nd position
  40.  
  41.  
  42. Screen 1 annotated:
  43.  
  44. E3
  45. 12 04 80 00 08 00 -- 4th index at x=108 (80),y=0, 0 fade in, 08 = green at top
  46. E3
  47. 00 0F 02 0B 16 00 09 0B 04 10 28 00 -- stop code
  48. E3
  49. 12 05 80 C0 C0 00 -- 5th index at x = 108 (80), y = 192 (C0), 0 fade in time, C0 = white in middle
  50. E3
  51. 12 06 80 80 81 00 -- 6th index at x = 108 (80), y = 108 (80), 0 fade in time, 81 = white at bottom
  52. E3
  53. 00 0F 02 0B 16 00 01 03 04 10 22 01 -- stop code
  54. E3
  55. 00 0F 02 16 0B 00 01 03 04 10 28 00 -- stop code
  56. E3
  57. 12 00 80 C0 C0 00 -- deletes #5
  58. E3
  59. 12 00 80 80 81 00 -- deletes #6
  60. E3
  61. 00 0F 02 16 0B 00 09 0B 04 10 32 00 -- stop code
  62. E3
  63. 12 00 80 00 08 00 -- deletes #4
Advertisement
Add Comment
Please, Sign In to add comment