en:docs:bios:api:int15:03

Note: This IBM PC BIOS API call is for DOS/Win16 personality only. Use Family API for portability.

Note: osFree Macro Library provides macros for most of functions

2022/03/13 05:41 · prokushev · 0 Comments

Int 15H, AH=03H

Version

IBM 5150 and IBM 4860 only

Brief

Write block from buffer

Family API

none

Input

  • AH = 03h
  • CX = number of bytes to write
  • ES:BX → buffer

Return

  • CF clear if successful
    • ES:BX → byte following last byte written
  • CF set on error
    • AH = status (see #00409)
    • CX = 0000h

Macro

INCLUDE BIOS.INC
 
buf db 127 dup (?)
 
@TapeWrite offset buf, 127

Notes

Note