mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTVDM]
- INT 21h AH = 0Ah: don't increment the count for a backspace. - Fix the EMS version number. svn path=/trunk/; revision=67584
This commit is contained in:
parent
f6f2e8dbac
commit
f619a2d270
2 changed files with 2 additions and 1 deletions
|
@ -402,6 +402,7 @@ VOID WINAPI DosInt21h(LPWORD Stack)
|
|||
}
|
||||
|
||||
if (Character == '\r') break;
|
||||
if (Character == '\b') continue;
|
||||
Count++; /* Carriage returns are NOT counted */
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
/* DEFINITIONS ****************************************************************/
|
||||
|
||||
#define EMS_VERSION_NUM 0x04
|
||||
#define EMS_VERSION_NUM 0x40
|
||||
#define EMS_INTERRUPT_NUM 0x67
|
||||
#define EMS_SEGMENT 0xD000
|
||||
#define EMS_MAX_HANDLES 16
|
||||
|
|
Loading…
Reference in a new issue