Advertisement
Guest User

hello.z80

a guest
Mar 6th, 2019
93
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    t2ByteTok, tAsmCmp
  5.     b_call(_ClrLCDFull)
  6.     ld    hl, 0
  7.     ld    (PenCol), hl
  8.     ld    hl, msg
  9.     b_call(_PutS)            ; Display the text
  10.     b_call(_NewLine)
  11.     ret
  12.  
  13. msg:
  14.     .db "Hello world!", 0
  15. .end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement