Skip to content

Commit 34a375e

Browse files
committed
Add Z80::MINIMUM_CYCLES_PER_STEP.
1 parent 92689a9 commit 34a375e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ext/z80/z80.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,7 @@ void Init_z80(void)
690690

691691
rb_define_const(klass, "MAXIMUM_CYCLES", ULL2NUM(Z80_MAXIMUM_CYCLES ));
692692
rb_define_const(klass, "MAXIMUM_CYCLES_PER_STEP", UINT2NUM(Z80_MAXIMUM_CYCLES_PER_STEP));
693+
rb_define_const(klass, "MINIMUM_CYCLES_PER_STEP", UINT2NUM(Z80_MINIMUM_CYCLES_PER_STEP));
693694
rb_define_const(klass, "HOOK", UINT2NUM(Z80_HOOK ));
694695

695696
rb_define_const(klass, "SF", UINT2NUM(Z80_SF));

0 commit comments

Comments
 (0)