Last change
on this file since 95 was 41, checked in by Tomi Tilli, 14 years ago |
Initial commit for Assembly Library.
|
File size:
763 bytes
|
Line | |
---|
1 | ; File name : BiosFunctions.inc
|
---|
2 | ; Project name : AssemblyLibrary
|
---|
3 | ; Created date : 25.6.2010
|
---|
4 | ; Last update : 24.7.2010
|
---|
5 | ; Author : Tomi Tilli
|
---|
6 | ; Description : Defines for BIOS functions.
|
---|
7 | %ifndef BIOS_FUNCTIONS_INC
|
---|
8 | %define BIOS_FUNCTIONS_INC
|
---|
9 |
|
---|
10 | ; BIOS interrupts
|
---|
11 | BIOS_VIDEO_INTERRUPT_10h EQU 10h
|
---|
12 | BIOS_SYSTEM_INTERRUPT_15h EQU 15h
|
---|
13 | BIOS_KEYBOARD_INTERRUPT_16h EQU 16h
|
---|
14 |
|
---|
15 |
|
---|
16 | ; BIOS video functions
|
---|
17 | SET_TEXT_MODE_CURSOR_SHAPE EQU 01h
|
---|
18 | SET_CURSOR_POSITION EQU 02h
|
---|
19 | GET_CURSOR_POSITION_AND_SIZE EQU 03h
|
---|
20 | SELECT_ACTIVE_DISPLAY_PAGE EQU 05h
|
---|
21 | TELETYPE_OUTPUT EQU 0Eh
|
---|
22 |
|
---|
23 | ; BIOS keyboard functions
|
---|
24 | GET_KEYSTROKE EQU 00h
|
---|
25 | CHECK_FOR_KEYSTROKE EQU 01h
|
---|
26 |
|
---|
27 | ; BIOS system functions
|
---|
28 | EVENT_WAIT EQU 86h
|
---|
29 |
|
---|
30 |
|
---|
31 | %endif ; BIOS_FUNCTIONS_INC
|
---|
Note:
See
TracBrowser
for help on using the repository browser.