typo: recieved -> received

This commit is contained in:
Fotis Georgatos 2019-06-25 00:13:52 +02:00 committed by GitHub
parent f482b010f5
commit 5edd86923a
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;