[FREELDR] Limit disk buffer size to 0xC000 bytes, like before r65905

svn path=/trunk/; revision=66047
This commit is contained in:
Hervé Poussineau 2015-01-17 22:48:21 +00:00
parent d7b7c58372
commit 9dd2476ee1

View file

@ -24,7 +24,7 @@
#define BIOSCALLBUFSIZE PAGE_SIZE /* max is sizeof(VESA_SVGA_INFO) = 512 */
#define MAX_FREELDR_PE_SIZE (DISKREADBUFFER - FREELDR_PE_BASE)
#define MIN_DISKREADBUFFER_SIZE HEX(1000)
#define MAX_DISKREADBUFFER_SIZE HEX(20000)
#define MAX_DISKREADBUFFER_SIZE HEX(C000)
/* These addresses specify the realmode "BSS section" layout */
#define BSS_RealModeEntry (BSS_START + 0)