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