Skip to content

Commit

Permalink
Implement game load and render
Browse files Browse the repository at this point in the history
  • Loading branch information
msosav committed Jun 23, 2024
1 parent 83b5936 commit 2e782a2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from pyboy import PyBoy

if __name__ == "__main__":
pyboy = PyBoy("roms/ZeldaLinksAwakening.gb")

while pyboy.tick():
pass

pyboy.stop()

0 comments on commit 2e782a2

Please sign in to comment.