pokecrystal-board/extras/vba_config.py

13 lines
379 B
Python
Raw Normal View History

2013-03-01 20:45:30 -08:00
#!/usr/bin/jython
# -*- encoding: utf-8 -*-
import os
# by default we assume the user has vba in pokecrystal/extras
project_path = os.path.abspath(os.path.join(os.path.dirname( __file__ ), '..'))
2013-03-01 20:45:30 -08:00
# save states are in pokecrystal/save-states/
2013-03-01 20:45:30 -08:00
save_state_path = os.path.join(project_path, "save-states")
# where is your rom?
rom_path = os.path.join(project_path, "baserom.gbc")