diff options
Diffstat (limited to 'isolinux.asm')
| -rw-r--r-- | isolinux.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/isolinux.asm b/isolinux.asm index 0d624f3d..da6d427e 100644 --- a/isolinux.asm +++ b/isolinux.asm @@ -972,10 +972,10 @@ not_386: is_386: ; Now we know it's a 386 or higher ; -; Now check that there is at least 384K of low (DOS) memory +; Now check that there is sufficient low (DOS) memory ; int 12h - cmp ax,384 + cmp ax,(real_mode_seg+0xa00) >> 6 jae enough_ram mov si,err_noram call writestr @@ -4449,7 +4449,7 @@ err_not386 db 'It appears your computer uses a 286 or lower CPU.' db 'down the Ctrl key while booting, and I will take your' db CR, LF db 'word for it.', CR, LF, 0 -err_noram db 'It appears your computer has less than 384K of low ("DOS")' +err_noram db 'It appears your computer has less than 360K of low ("DOS")' db 0Dh, 0Ah db 'RAM. Linux needs at least this amount to boot. If you get' db 0Dh, 0Ah |
