Skip to content

Commit

Permalink
Update mini65 to check the generated COM files.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsc committed Jul 28, 2024
1 parent 68266b0 commit b01f3e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion testsuite/mini65
Submodule mini65 updated 10 files
+1 −0 README.md
+105 −11 src/atari.c
+5 −3 src/atari.h
+40 −10 src/atcio.c
+143 −13 src/atsio.c
+4 −0 src/atsio.h
+26 −1 src/hw.c
+26 −18 src/main.c
+60 −3 src/sim65.c
+13 −4 src/sim65.h
4 changes: 2 additions & 2 deletions testsuite/src/fbtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ 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, 0, str_get_char, str_put_char, 1);
atari_init(s, str_get_char, str_put_char, 1);
// Use 0 as left-margin value, to normalize results
unsigned char val = 0;
sim65_add_data_ram(s, 0x52, &val, 1); // LMARGN
Expand All @@ -115,7 +115,7 @@ static int run_atari_prog(const char *progname, char *output, size_t *output_len
if( is_rom )
e = atari_rom_load(s, 0xA000, progname);
else
e = atari_xex_load(s, progname);
e = atari_xex_load(s, progname, 1);
if (e == sim65_err_user)
{
fprintf(stderr, "%s: error reading XEX/ROM file\n", progname);
Expand Down

0 comments on commit b01f3e9

Please sign in to comment.