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
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
-
# z80
1
+
# The Jolly Good Z80
2
2
3
-
A complete z80 emulator written in C99 under the MIT license. The emulator currently passes both zexdoc and zexall Z80 instruction exerciser tests. See `z80_tests.c` for example usage. Note that cycles are counted at instruction level.
3
+
The Jolly Good Z80 is a fast and accurate instruction-stepped Z80 emulator written in C11.
4
+
5
+
The emulator currently passes both zexdoc and zexall Z80 instruction tests.
6
+
It has also been verified correct against VisualZ80.
4
7
5
8
You can run the tests by running `make && ./z80_tests`, which outputs:
6
9
@@ -156,7 +159,9 @@ Tests complete
156
159
157
160
## Licensing
158
161
159
-
This project is under the MIT license; except the files in `roms` which are provided for convenience to test the z80 core implementation. These files authors' and licenses can be seen in the source files (.z80/.src files).
162
+
This project is under the MIT license, except the files in `roms` which are provided for convenience to test the z80 core implementation. These files authors' and licenses can be seen in the source files (.z80/.src files).
163
+
164
+
This emulator is a hard fork of [superzazu/z80](https://github.com/superzazu/z80)
0 commit comments