[freeldr] Limit disk read buffer size to 512 bytes

svn path=/trunk/; revision=43575
This commit is contained in:
Hervé Poussineau 2009-10-18 19:53:12 +00:00
parent dba912455e
commit 2d7ba2275a

View file

@ -46,7 +46,7 @@
#define BIOSCALLBUFOFFSET 0x0000 /* Buffer to store temporary data for any Int386() call */
#define FILESYSBUFFER 0x80000 /* Buffer to store file system data (e.g. cluster buffer for FAT) */
#define DISKREADBUFFER 0x90000 /* Buffer to store data read in from the disk via the BIOS */
#define DISKREADBUFFER_SIZE 0x10000
#define DISKREADBUFFER_SIZE 512
#elif defined(_M_PPC) || defined(_M_MIPS) || defined(_M_ARM)
#define DISKREADBUFFER 0x80000000
#define FILESYSBUFFER 0x80000000