Delete not anymore needed comment

In lexer.c
This commit is contained in:
XOR 2023-03-12 09:11:51 +01:00
parent 1ffd59b615
commit 58b707c7ef

View file

@ -27,9 +27,6 @@ int save_img(char *out_path, __uint32_t *target_code){
FILE *out_file = fopen(out_path, "wb");
if(out_file == NULL) return EIO;
// Count instructions
if (fwrite(target_code, sizeof(target_code), count, out_file) != count)
{