home *** CD-ROM | disk | FTP | other *** search
- program logged;
-
- (*
- This program works with most current versions of novell netware
- software. It is designed to determine your station number using
- msdos interrupts.
- Written by: Kip McClanahan
- 9501 Bart Hollow Dr.
- Austin Tx, 78750
- Feel free to ask any questions about the program.
-
- *)
-
-
- type result = record case integer of
- 1:(ax,bx,cx,dx,bp,si,di,ds,es,flags:integer);
- 2:(al,ah,bl,bh,cl,ch,dl,dh:byte);
- end;
-
- var regs:result;
-
- begin
- with regs do begin
- ah:=$dc;
- msdos(regs);
- writeln ('Your Station Number:',al);
- writeln ('Ascii Version:',ch,cl);
- end;
- end.
-