You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-7
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,12 @@
6
6
7
7
Z80Processor is a an implementation of the Mostek / Zilog Z80 processor in Java
8
8
9
-
The code is not designed to be nice / clean / compact - however it is designed to be fast. It has been heavily profiled
10
-
using [Yourkit](https://www.yourkit.com/) while running 'real' applications to identify hotspots.
9
+
The code is not designed to be nice / clean / compact - however it is designed to be fast and easily checkable with every instruction
10
+
on its own switch / case statement.
11
+
12
+
If you are looking for a compact implementation, have a look at the Go implementation [here](https://github.com/codesqueak/z80)
13
+
14
+
It code has been heavily profiled using [Yourkit](https://www.yourkit.com/) while running 'real' applications to identify hotspots.
11
15
12
16
If you find this project useful, you may want to [__Buy me a Coffee!__:coffee:](https://www.buymeacoffee.com/codesqueak) Thanks :thumbsup:
13
17
@@ -23,10 +27,9 @@ Linux
23
27
24
28
The build may take a few minutes as it includes a comprehensive test suite for the Z80 instruction set.
25
29
30
+
## Java Version
26
31
27
-
## Using Jenkins
28
-
29
-
The project includes a Jenkins file to control a pipeline build. At present the available version of the Jacoco plugin (2.0.1 at time of writing) does not support a 'publisher'. The build was tested using a hand built plugin from the master branch of the [project](https://github.com/jenkinsci/jacoco-plugin)
32
+
Version 4.0.0 onwards of the emulator require Java 17 or above
30
33
31
34
### Include Using Maven
32
35
@@ -35,15 +38,15 @@ The project includes a Jenkins file to control a pipeline build. At present the
0 commit comments