Browse Source

typo: recieved -> received

Fotis Georgatos 4 years ago
parent
commit
5edd86923a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vm_decode.c

+ 1 - 1
vm_decode.c

@@ -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;