home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / 8080 / bdos.c < prev    next >
Encoding:
Text File  |  1986-11-30  |  279 b   |  18 lines

  1. bdos (c, de) int c, de; {
  2. #asm
  3. ;    CP/M support routine
  4. ;    bdos(C,DE);
  5. ;    char *DE; int C;
  6. ;    returns H=B,L=A per CPM standard
  7.     pop    h    ; hold return address
  8.     pop    d    ; get bdos function number
  9.     pop    b    ; get DE register argument
  10.     push    d
  11.     push    b
  12.     push    h
  13.     call    5
  14.     mov    h,b
  15.     mov    l,a
  16. #endasm
  17. }
  18.