1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 23:46:14 +00:00

Correct FPtoVP table size error in BIGVM case

The table requires 1 cell (32-bit word) per page, for 256 MB in 512 byte pages.

	modified:   src/ldsout.c
This commit is contained in:
Nick Briggs 2020-07-08 18:43:00 -07:00
parent ae5eea1a29
commit 7eca23930b

View File

@ -91,7 +91,8 @@ int sysout_loader(char * sysout_file_name, int sys_size)
char *fptovp_scratch; /* scratch area for FPTOVP */
#ifdef BIGVM
unsigned int fptovp[0x40000]; /* FPTOVP */
/* 1 "cell" per page for 256MB in 512 byte pages */
unsigned int fptovp[0x80000]; /* FPTOVP */
#else
DLword fptovp[0x10000]; /* FPTOVP */
#endif /* BIGVM */