1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-11 18:49:16 +00:00

Don't forget newline when printing regs.

This commit is contained in:
Radosław Kujawa 2018-03-24 00:14:41 +01:00
parent 5fddf2c5dc
commit eeb337a0d6

View File

@ -193,7 +193,7 @@ rk65c02_dump_regs(reg_state_t regs)
str = rk65c02_regs_string_get(regs); str = rk65c02_regs_string_get(regs);
printf ("%s", str); printf ("%s\n", str);
free(str); free(str);
} }