home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / c128 / text / examples.arc / TEXT.A < prev    next >
Text File  |  1989-12-01  |  844b  |  28 lines

  1. ;text.asm
  2. ;-----------------------------------------
  3. ; user installable command: set text mode
  4. ;-----------------------------------------
  5.                                   
  6. tx          = $1bfe               
  7. colr        = $1be1               
  8. int0e       = $170e
  9.  
  10. Yellow      = $9e
  11.                                   
  12. star        = $0b00               
  13.             .wor  star            
  14.             * = star              
  15.  
  16.             jmp text
  17.             dw  Date
  18.                   
  19. text        lda tx                ;flag text mode
  20.             ora #%10000000        
  21.             sta tx                
  22.             lda #Yellow
  23.             sta colr              
  24.             jsr $ffd2             
  25.             jmp int0e             ;and terminate
  26.                                   
  27.             .end                  
  28.