home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
mbug
/
mbug097.arc
/
SYSTEMPL.MAC
< prev
next >
Wrap
Text File
|
1979-12-31
|
896b
|
58 lines
;
;
; Operating system support program template.
;
;
bdos equ 5
cr equ 13
lf equ 10
tab equ 9
bell equ 7
bios_start equ 0E700h
id equ 218h
id_val equ 0AA55h
aseg
org 100h
ld de,start_mesg
ld c,9
call bdos
ld hl,(bios_start+id)
ld de,id_val
or a
sbc hl,de
jr nz,get_lost
ld de,use_mesg
ld c,9
call bdos
ret
get_lost:
ld de,wb_mesg
ld c,9
call bdos
ret
start_mesg:
db cr,lf,'Microbee 512k Enhanced Operating System v2.2,'
db ' (c) 1987 Peter Broughton.',cr,lf
db 'FILENAME : system support program.',cr,lf,lf,'$'
wb_mesg:
db bell,'Wrong operating system !!',cr,lf,lf,'$'
use_mesg:
db 'Use : FILENAME other stuff.',cr,lf,lf,'$'
if ($ and 7Fh) ne 0
ds 80h-($ and 7Fh)
endif
end