Skip to content

Commit

Permalink
[#37] Add boilerplate code for the Z80 simulator.
Browse files Browse the repository at this point in the history
  • Loading branch information
kosarev committed Sep 28, 2021
1 parent efb1f78 commit 268ef70
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/z80sim/z80sim.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# Transistor-level Z80 CPU simulator.
#
# Originated from the Visual 6502 and Z80 Explorer projects.
#
# https://github.com/trebonian/visual6502
# commit badcf8e40be74398ec55593e172acb287ca73e3b of 31 Mar 2020
#
# https://github.com/gdevic/Z80Explorer
# commit c11574c1d80352b355d297ad3ae33701a7110485 of 19 Jan 2021


def main():
pass


if __name__ == "__main__":
main()

0 comments on commit 268ef70

Please sign in to comment.