source: xtideuniversalbios/trunk/Assembly_Library/Inc/BiosFunctions.inc@ 145

Last change on this file since 145 was 141, checked in by Tomi Tilli, 14 years ago

Changes to Assembly Library:

  • Some inlining in Size.asm.
  • File Dialog can now enter in subdirectories starting with number.
File size: 679 bytes
Line 
1; Project name : AssemblyLibrary
2; Description : Defines for BIOS functions.
3%ifndef BIOS_FUNCTIONS_INC
4%define BIOS_FUNCTIONS_INC
5
6; BIOS interrupts
7BIOS_VIDEO_INTERRUPT_10h EQU 10h
8BIOS_SYSTEM_INTERRUPT_15h EQU 15h
9BIOS_KEYBOARD_INTERRUPT_16h EQU 16h
10
11
12; BIOS video functions
13SET_VIDEO_MODE EQU 00h
14SET_TEXT_MODE_CURSOR_SHAPE EQU 01h
15SET_CURSOR_POSITION EQU 02h
16GET_CURSOR_POSITION_AND_SIZE EQU 03h
17SELECT_ACTIVE_DISPLAY_PAGE EQU 05h
18TELETYPE_OUTPUT EQU 0Eh
19
20; BIOS keyboard functions
21GET_KEYSTROKE EQU 00h
22CHECK_FOR_KEYSTROKE EQU 01h
23
24; BIOS system functions
25EVENT_WAIT EQU 86h
26
27
28%endif ; BIOS_FUNCTIONS_INC
Note: See TracBrowser for help on using the repository browser.