Initial import

This commit is contained in:
2018-02-15 17:50:04 +01:00
commit 9e07e0b53c
8 changed files with 540 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Run e-uae emulator with some configuration goodies :)
"""
from e_uae_wrapper import wrapper
def main():
"""run wrapper"""
wrapper.run()
if __name__ == "__main__":
main()