z80 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7127ba75b47ae54758721e1a7db87984334826633a39605772f4c0530e888f4
4
- data.tar.gz: ad2660a9e28bd3b0f4ad08468c84066eea7a87351c4079717041ccdbd11aca03
3
+ metadata.gz: 2416d32f3a4ebbcc8559ac488b4f903a59c801810121a53a39186323a0b32aab
4
+ data.tar.gz: 6f222c4471393ec4e84a747933ccd695469b62b53f5dd6709d7dc1b6a49c80fc
5
5
  SHA512:
6
- metadata.gz: 9d9e5ad2028dcffd3676260cf3b440c0a3f5e4c362ef6af1de0e13b9cd16faa888211d75f22cfae977b7664178e112d2a70d896e615f8d8079168d2134f9523a
7
- data.tar.gz: a33735315fc7c33a6419e0e0d4af0d204962491a2f040002d4aa6f47bbdbc2baa60e677798eaba9dcd5313f3d09c63ee66009ceb99d19790f5c56afd8d84e99a
6
+ metadata.gz: 06e5680645db94a947baef258ac3640b4c0ad1d4dabb08323e6d109379d82c018c7345cc927c0364b135893e3ced05fefb1e71012c91288e7b3a40eab2852f58
7
+ data.tar.gz: 46b5ade55881f6b28805ea0e113d638218f2792ce83040ea49e0d66ac3218604c83e863e837a277e84b3e4d3ffdcea7dd299b987c3aba5aa9ca4b3a3477d5390
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  This is the version history and changelog of Z80-Ruby. Version numbers do not correlate with those of the Z80 library. Release dates are in UTC time zone.
4
4
 
5
+ ## 0.3.2 / 2024-01-05
6
+
7
+ ### Bugfixes
8
+
9
+ * Added `Z80::MINIMUM_CYCLES_PER_STEP` (again). It was not actually added in v0.2.0 by mistake.
10
+
5
11
  ## 0.3.1 / 2024-01-05
6
12
 
7
13
  ### Bugfixes
@@ -25,7 +31,7 @@ This is the version history and changelog of Z80-Ruby. Version numbers do not co
25
31
 
26
32
  ### Enhancements
27
33
 
28
- * Added [`Z80::MINIMUM_CYCLES_PER_STEP`](https://zxe.io/software/Z80/documentation/latest/APIReference.html#c.Z80_MINIMUM_CYCLES_PER_STEP).
34
+ * Added `Z80::MINIMUM_CYCLES_PER_STEP`.
29
35
  * Minor code improvements.
30
36
 
31
37
  ### Bugfixes
data/CITATION.cff CHANGED
@@ -20,5 +20,5 @@ message: If you use this software, please cite it using these metadata.
20
20
  repository-code: https://github.com/redcode/Z80-Ruby
21
21
  title: Z80-Ruby
22
22
  type: software
23
- version: 0.3.1
23
+ version: 0.3.2
24
24
  url: https://zxe.io/software/Z80-Ruby
data/ext/z80/z80.c CHANGED
@@ -690,6 +690,7 @@ void Init_z80(void)
690
690
 
691
691
  rb_define_const(klass, "MAXIMUM_CYCLES", ULL2NUM(Z80_MAXIMUM_CYCLES ));
692
692
  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));
693
694
  rb_define_const(klass, "HOOK", UINT2NUM(Z80_HOOK ));
694
695
 
695
696
  rb_define_const(klass, "SF", UINT2NUM(Z80_SF));
data/lib/z80/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Z80
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: z80
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Sainz de Baranda y Goñi