1
0
mirror of https://github.com/brouhaha/dis6502.git synced 2024-06-02 10:41:30 +00:00

Fix command line -e option.

This commit is contained in:
Eric Smith 2018-03-08 16:37:13 -07:00
parent 9962af1740
commit 9a4a59f0cf

6
main.c
View File

@ -616,11 +616,9 @@ void binaryloadfile (void)
if (entry_count) if (entry_count)
{ {
int i; for (int i = 0; i < entry_count; i++)
char *label;
label = malloc(7);
for (i = 0; i < entry_count; i++)
{ {
char *label = malloc(7);
sprintf (label, "e_%04x", entry_address[i]); sprintf (label, "e_%04x", entry_address[i]);
printf("label: %s\n", label); printf("label: %s\n", label);
start_trace (entry_address[i], label); start_trace (entry_address[i], label);