Make a message #ifdef DEBUG only.

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@637 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2003-07-12 20:57:23 +00:00
parent 756c578ca7
commit 7f21061003

View File

@ -142,10 +142,12 @@ int EnableHMA(VOID)
_DisableA20(); _DisableA20();
#ifdef DEBUG
if (fmemcmp(MK_FP(0x0000, 0x0000), MK_FP(0xffff, 0x0010), 128) != 0) if (fmemcmp(MK_FP(0x0000, 0x0000), MK_FP(0xffff, 0x0010), 128) != 0)
{ {
printf("HMA can't be disabled - no problem for us\n"); printf("HMA can't be disabled - no problem for us\n");
} }
#endif
_EnableA20(); _EnableA20();
if (fmemcmp(MK_FP(0x0000, 0x0000), MK_FP(0xffff, 0x0010), 128) == 0) if (fmemcmp(MK_FP(0x0000, 0x0000), MK_FP(0xffff, 0x0010), 128) == 0)