reduce default image size; max number of open files

FossilOrigin-Name: dcc17eea2f46a1bb50e0039d60c5921ea5482b15b70b0a2859086568a34026a4
This commit is contained in:
crc 2019-11-13 21:24:11 +00:00
parent fb9ef5482e
commit 27f841e3ba
2 changed files with 3 additions and 4 deletions

View file

@ -15,8 +15,7 @@ it using separate file to make the actual editing process easier
for me.
~~~
{
'Overview
{ 'Overview
'Obtaining-Retro
'Building-Unix
'Building-Windows

View file

@ -48,7 +48,7 @@
#define CELL_MAX LLONG_MAX - 1
#endif
#define IMAGE_SIZE 524288 * 2 /* Amount of RAM. 4MiB (1M) cells */
#define IMAGE_SIZE 524288 /* Amount of RAM, in cells */
#define ADDRESSES 256 /* Depth of address stack */
#define STACK_DEPTH 256 /* Depth of data stack */
@ -61,7 +61,7 @@
#define NUM_DEVICES 10 /* Set the number of I/O devices */
#define MAX_OPEN_FILES 128
#define MAX_OPEN_FILES 32
/*---------------------------------------------------------------------