mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2025-12-24 15:12:26 +01:00
17 lines
211 B
Python
Executable File
17 lines
211 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Run CD32 games using fsuae
|
|
"""
|
|
|
|
from fs_uae_wrapper import wrapper
|
|
|
|
|
|
def main():
|
|
"""run wrapper"""
|
|
wrapper.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|