home *** CD-ROM | disk | FTP | other *** search
-
- 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
-