summaryrefslogtreecommitdiff
path: root/pokemontools/vba/vba_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'pokemontools/vba/vba_config.py')
-rw-r--r--pokemontools/vba/vba_config.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/pokemontools/vba/vba_config.py b/pokemontools/vba/vba_config.py
new file mode 100644
index 0000000..4433f16
--- /dev/null
+++ b/pokemontools/vba/vba_config.py
@@ -0,0 +1,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")