2013-03-02 04:45:30 +00:00
|
|
|
#!/usr/bin/jython
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
import os
|
|
|
|
|
2013-03-08 04:39:21 +00:00
|
|
|
# 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-02 04:45:30 +00:00
|
|
|
|
2013-03-08 04:39:21 +00:00
|
|
|
# save states are in pokecrystal/save-states/
|
2013-03-02 04:45:30 +00:00
|
|
|
save_state_path = os.path.join(project_path, "save-states")
|
|
|
|
|
|
|
|
# where is your rom?
|
|
|
|
rom_path = os.path.join(project_path, "baserom.gbc")
|