mirror of https://github.com/FDOS/kernel.git
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:
parent
9e92e3025b
commit
1c6f3640a3
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue