Fixed Debug Point and expanded Memory to 2MB

This commit is contained in:
Jeremiah Orians 2017-02-12 17:25:03 -05:00
parent e8d84296e1
commit 32a401639e
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
3 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ class StringGenerator(object):
UI.Step_lilith()
while UI.Current_IP not in UI.Watchpoints:
UI.Step_lilith()
if UI.Count >= UI.Debug_Point:
if UI.Count == UI.Debug_Point:
break
return UI.returnPage()

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 << 21);
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 << 21);
Globalvm = vm;
}