blob: 4433f16c021be952525321a12e30ea240acc9c6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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__ ), '..'))
# save states are in pokecrystal/save-states/
save_state_path = os.path.join(project_path, "save-states")
# where is your rom?
rom_path = os.path.join(project_path, "baserom.gbc")
|