zemu 0.1.0 → 0.1.1
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 +4 -4
- data/lib/zemu.rb +1 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6f562e6869c6bcb8df2f0635bf7bc3f70d9668ab91f6d0806e6d1f0c767ec78
|
|
4
|
+
data.tar.gz: a83bf92a0244875db8b48d29cdd11eb74ee9ab94c1eb24c6b2255b8d3c81bcee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9054649380e73ae6d96d2307c85cc2029d529ef6a0de7f4ebf17d05ac058ed66102b2efccb5a946cc0d828a4932f7121777212e2d8376571adb709aefa08c681
|
|
7
|
+
data.tar.gz: 4900928e8fe5f1ba241f3a99f5a17adbfd0b76c9caa08030b4278f8fec9b92ddae61c05326dede2d80ad60917090f4266a6af6b9d9c593178647a583460b57a2
|
data/lib/zemu.rb
CHANGED
|
@@ -3,8 +3,6 @@ require 'erb'
|
|
|
3
3
|
require_relative 'zemu/config'
|
|
4
4
|
require_relative 'zemu/instance'
|
|
5
5
|
|
|
6
|
-
# Zemu
|
|
7
|
-
#
|
|
8
6
|
# Zemu is a module providing an interface to build and interact with
|
|
9
7
|
# configurable Z80 emulators.
|
|
10
8
|
#
|
|
@@ -12,9 +10,6 @@ require_relative 'zemu/instance'
|
|
|
12
10
|
# an emulator executable can be compiled. This executable can then be run
|
|
13
11
|
# from within Zemu and controlled programmatically.
|
|
14
12
|
#
|
|
15
|
-
# Please note: The example below does not currently work, as not all features
|
|
16
|
-
# have been implemented.
|
|
17
|
-
#
|
|
18
13
|
# @example
|
|
19
14
|
#
|
|
20
15
|
# require 'zemu'
|
|
@@ -81,7 +76,7 @@ module Zemu
|
|
|
81
76
|
unless Dir.exist? configuration.output_directory
|
|
82
77
|
Dir.mkdir configuration.output_directory
|
|
83
78
|
end
|
|
84
|
-
|
|
79
|
+
|
|
85
80
|
# Generate the autogenerated source files.
|
|
86
81
|
generate(configuration)
|
|
87
82
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zemu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jay Valentine
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A configurable Z80 emulator gem
|
|
14
14
|
email: jayv136@gmail.com
|
|
@@ -302,7 +302,7 @@ files:
|
|
|
302
302
|
- src/main.c
|
|
303
303
|
- src/memory.c.erb
|
|
304
304
|
- src/memory.h.erb
|
|
305
|
-
homepage:
|
|
305
|
+
homepage: https://github.com/jayvalentine/zemu
|
|
306
306
|
licenses:
|
|
307
307
|
- GPL-3.0
|
|
308
308
|
metadata: {}
|