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
|
---|
7 | BIOS_VIDEO_INTERRUPT_10h EQU 10h
|
---|
8 | BIOS_SYSTEM_INTERRUPT_15h EQU 15h
|
---|
9 | BIOS_KEYBOARD_INTERRUPT_16h EQU 16h
|
---|
10 |
|
---|
11 |
|
---|
12 | ; BIOS video functions
|
---|
13 | SET_VIDEO_MODE EQU 00h
|
---|
14 | SET_TEXT_MODE_CURSOR_SHAPE EQU 01h
|
---|
15 | SET_CURSOR_POSITION EQU 02h
|
---|
16 | GET_CURSOR_POSITION_AND_SIZE EQU 03h
|
---|
17 | SELECT_ACTIVE_DISPLAY_PAGE EQU 05h
|
---|
18 | TELETYPE_OUTPUT EQU 0Eh
|
---|
19 |
|
---|
20 | ; BIOS keyboard functions
|
---|
21 | GET_KEYSTROKE EQU 00h
|
---|
22 | CHECK_FOR_KEYSTROKE EQU 01h
|
---|
23 |
|
---|
24 | ; BIOS system functions
|
---|
25 | EVENT_WAIT EQU 86h
|
---|
26 |
|
---|
27 |
|
---|
28 | %endif ; BIOS_FUNCTIONS_INC
|
---|
Note:
See
TracBrowser
for help on using the repository browser.