Advertisement
ASMProgrammer

Z80 Title Code

Jun 7th, 2023
74
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASM (NASM) 0.29 KB | Source Code | 0 0
  1. #include    "ti83plus.inc"
  2. #define     progStart   $9D95
  3. .org        progStart-2
  4. .db         $BB,$6D
  5.     bcall(_ClrLCDFull)
  6.     ld  HL, 0
  7.     ld  (CurRow),   HL
  8.     ld  HL, Message
  9.     bcall(_PutS) ; Displays the string
  10.     bcall(_NewLine)
  11.     ret
  12. Message:
  13. .db         "Message",0
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement