Borland C (unlike Turbo C) didn't like this pseudo register use.

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@792 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2004-03-07 11:09:52 +00:00
parent 9e92e3025b
commit 1c6f3640a3
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ void put_console(int c)
write(1, &c, 1); /* write character to stdout */
#else
#if defined(__TURBOC__)
_AX = 0x0e00 | c;
_AL = c;
_AH = 0x0e;
_BX = 0x0070;
__int__(0x10);
#elif defined(I86)