Increase amount of available memory to 4MB

This commit is contained in:
Jeremiah Orians 2016-10-29 23:15:48 -04:00
parent fdbe263dbe
commit 1fa2f125f3
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
2 changed files with 2 additions and 2 deletions

2
vm.c
View File

@ -44,7 +44,7 @@ int main(int argc, char **argv)
/* Perform all the essential stages in order */
struct lilith* vm;
vm = create_vm(1 << 20);
vm = create_vm(1 << 22);
load_program(vm, argv);
execute_vm(vm);
destroy_vm(vm);

View File

@ -37,7 +37,7 @@ void execute_vm(struct lilith* vm)
void initialize_lilith()
{
struct lilith* vm;
vm = create_vm(1 << 20);
vm = create_vm(1 << 22);
Globalvm = vm;
}