en:docs:bios:api:int10:0c

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 10H, AH=0CH

Version

IBM 5150 and higher

Brief

Draw pixel in graph mode

osFree Macro Library

Family API

No equivalent

Parameters

  • AH = 0Ch
  • BH = page number
  • AL = pixel color if bit 7 set, value is XOR'ed onto screen except in 256-color modes
  • CX = column
  • DX = row

Return

Macro

INCLUDE BIOS.INC
 
@SetDot 1, 10, 10, 0

Notes