Make Comment more clear

This commit is contained in:
XOR 2023-02-04 19:36:42 +01:00
parent 2368a92f58
commit eea7693a14

View file

@ -1,7 +1,7 @@
#include <stdio.h>
int save_img(char *out_path, __uint32_t *target_code){
//get count of instructions
// Count instructions
unsigned int count = 0;
while(target_code[count]!=0)
{