Skip to content

Commit

Permalink
Z80#full_r bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcode committed Jan 5, 2024
1 parent 313563c commit 8128768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/z80/z80.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ void Init_z80(void)
rb_define_method(klass, "execute", Z80__execute, 1);
rb_define_method(klass, "run", Z80__run, 1);
rb_define_method(klass, "terminate", Z80__terminate, 0);
rb_define_method(klass, "full_r", Z80__refresh_address, 0);
rb_define_method(klass, "full_r", Z80__full_r, 0);
rb_define_method(klass, "refresh_address", Z80__refresh_address, 0);
rb_define_method(klass, "in_cycle", Z80__in_cycle, 0);
rb_define_method(klass, "out_cycle", Z80__out_cycle, 0);
Expand Down

0 comments on commit 8128768

Please sign in to comment.