Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

VgaPutCharacter

NullException edited this page Aug 6, 2020 · 1 revision

VgaPutCharacter fucntion

Description

Puts a character at specified coordinates on the screen

Syntax

void VgaPutCharacter(char character, 
                     char character_attributes, 
                     dword x, 
                     dword y
);

Parameters

character

The character to be put on screen


character_attributes

The character attribute byte to be used. If 0 is used, the default attribute byte is used


x

The X coordinate on screen


y

The Y coordinate on screen


Return Value

N/A

Notes

Currently there is no boundary checking in place, meaning that this function can be used to write to invalid memory.