Skip to content

Commit

Permalink
Update mini65 emulator to last version.
Browse files Browse the repository at this point in the history
This fixes CIO error on long records.
  • Loading branch information
dmsc committed Oct 14, 2024
1 parent 584ff5a commit 85651fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testsuite/mini65
5 changes: 4 additions & 1 deletion testsuite/src/fbtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ static int run_atari_prog(const char *progname, char *output, size_t *output_len
if (!s)
return -1;
// sim65_set_debug(s, sim65_debug_trace);
atari_init(s, str_get_char, str_put_char, 1);
emu_options opts = {
.get_char = str_get_char, .put_char = str_put_char, .flags = atari_opt_cycletime
};
atari_init(s, &opts);
// Add command line
atari_dos_add_cmdline(s, progname);
if (cmdline)
Expand Down

0 comments on commit 85651fa

Please sign in to comment.