atari2600运行环境:
https://github.com/openai/atari-py
安装环境,以及导入 rom文件这里不进行介绍(前文已介绍):
测试环境是否可以运行的代码:
import atari_py def fun(game): ale = atari_py.ALEInterface() ale.loadROM(atari_py.get_game_path(game)) for game in atari_py.list_games(): print(game) fun(game)
=============================================================
经过测试可以运行的 游戏rom文件:
https://gitee.com/devilmaycry812839668/atari_roms
surround 和 pacman 这两个游戏经过测试发现rom文件(对应为 .bin文件)无法加载到内存中,运行报错为 Segmentation fault (core dumped) !!!