Advertisement
Guest User

hello.z80

a guest
Nov 4th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include    "ti83plus.inc"
  2. #define     progStart   $9D95
  3. .org        progStart-2
  4. .db         $BB,$6D
  5.     b_call(_ClrLCDFull)
  6.     LD     HL, 0
  7.     LD     (CurRow), HL
  8.     b_call(_GetKey)    ; Get a key
  9.     LD     H, 0
  10.     LD     L, A         ; Store A in HL
  11.     b_call(_DispHL)
  12.     b_call(_NewLine)   ; This will shift the "Done" message down one line.
  13.     RET
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement