Merge pull request #15 from fgeorgatos/patch-1

typo: recieved -> received
This commit is contained in:
Jeremiah 2019-06-24 19:58:11 -04:00 committed by GitHub
commit d2e1c54e9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ void outside_of_world(struct lilith* vm, unsigned_vm_register place, char* messa
/* Deal with illegal instructions and their encodings */
void illegal_instruction(struct lilith* vm, struct Instruction* c)
{
fprintf(stderr, "Invalid instruction was recieved at address:%08X\n", c->ip);
fprintf(stderr, "Invalid instruction was received at address:%08X\n", c->ip);
fprintf(stderr, "After %lu instructions\n", performance_counter);
fprintf(stderr, "Unable to execute the following instruction:\n\t%s\n", c->operation);
c->invalid = true;