Advertisement
LBPHacker

RTerm P1 tech demo

Jul 10th, 2016
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     mov ax, message
  2.     mov ex, 0
  3. loop:
  4.     mov bx, [ax]
  5.     cmp bx, 0
  6.     jz die
  7.     send ex, bx
  8.     add ax, 1
  9.     jmp loop
  10. die:
  11.     hlt
  12.  
  13. message:
  14.     dw 0x1106, 0x200B, "RTerm P1 tech demo"
  15.     dw 0x1164, 0x200F, "+", 0x2007, 0x1166, "32x24 subframe screen"
  16.     dw 0x11A4, 0x200F, "+", 0x2007, 0x11A6, "Freely", 0x120B, "movable", 0x11CE, "cursor"
  17.     dw 0x1264, 0x200F, "+", 0x2007, 0x1266, "4-bit ", 0x205A, "coloured", 0x2007, " text"
  18.     dw 0x12A4, 0x200F, "+", 0x2007, 0x12A6, "Downward scrolling", 0x3000, 0x3000, 0x3000
  19.     dw 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement