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