Fixed web debugger regression

This commit is contained in:
Jeremiah Orians 2017-05-14 09:35:54 -04:00
parent 60d4542e62
commit cec59e8860
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
2 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,7 @@
** Fixed
Made Web debugger provide more useful information
Fixed regression in web debugger's ability to read input files
** Removed

View File

@ -53,6 +53,8 @@ void execute_vm(struct lilith* vm)
void initialize_lilith(unsigned int size)
{
tape_01_name = "tape_01";
tape_02_name = "tape_02";
struct lilith* vm;
vm = create_vm(size);
Globalvm = vm;