home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oakland CPM Archive
/
oakcpm.iso
/
cpmug
/
cpmug015.ark
/
PROC1.ASM
< prev
next >
Wrap
Assembly Source File
|
1984-04-29
|
453b
|
21 lines
TITLE 'PROC1'
ORG 4000H
DUMP EQU 7200H
START EQU 83A8H
STOP EQU 84A0H
NM2: DB 'PROC2 '
BEGIN: LXI SP,3FA0H ; 1
LXI B,NM2
MVI E,0FFH
CALL START ; Start PROC2 with the default priority
MVI B,0 ; 2
CALL STOP ; Stop this process
; Control switches to PROC2
HLT
END BEGIN