1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-04-26 02:11:27 +02:00
Files
fs-uae-wrapper/script/fs-uae-wrapper
T

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()