-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#37] Add boilerplate code for the Z80 simulator.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |