home *** CD-ROM | disk | FTP | other *** search
- ;text.asm
- ;-----------------------------------------
- ; user installable command: set text mode
- ;-----------------------------------------
-
- tx = $1bfe
- colr = $1be1
- int0e = $170e
-
- Yellow = $9e
-
- star = $0b00
- .wor star
- * = star
-
- jmp text
- dw Date
-
- text lda tx ;flag text mode
- ora #%10000000
- sta tx
- lda #Yellow
- sta colr
- jsr $ffd2
- jmp int0e ;and terminate
-
- .end
-