Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
teruteru128 committed Jul 24, 2023
1 parent 06228b4 commit c0b7235
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main2.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ int entrypoint(int argc, char **argv, char *const *envp)
seed[0] = 0xE66D;
seed48_r(seed, &data);
printf("__x: %04x%04x%04x\n", data.__x[2], data.__x[1], data.__x[0]);
printf("__old_x: %04x%04x%04x\n", data.__old_x[2], data.__old_x[1], data.__old_x[0]);
printf("__old_x: %04x%04x%04x\n", data.__old_x[2], data.__old_x[1],
data.__old_x[0]);
printf("__c: %04x\n", data.__c);
printf("__init: %04x\n", data.__init);
printf("__a: %016llx\n", data.__a);
Expand Down

0 comments on commit c0b7235

Please sign in to comment.