Function: dos-intdos
dos-intdos is a byte-compiled function defined in dos-fns.el.gz.
Signature
(dos-intdos REGS)
Documentation
Issue the DOS Int 21h with registers REGS.
REGS should be a vector produced by dos-make-register
and dos-set-register-value, which see.
Aliases
intdos (obsolete since 24.1)
Source Code
;; Defined in /usr/src/emacs/lisp/dos-fns.el.gz
(defsubst dos-intdos (regs)
"Issue the DOS Int 21h with registers REGS.
REGS should be a vector produced by `dos-make-register'
and `dos-set-register-value', which see."
(int86 33 regs))