diff options
-rw-r--r-- | INSTALL.md | 6 | ||||
-rw-r--r-- | data/specials.inc | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md index b852dd126..dfd992f2f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,12 +6,12 @@ Make sure that there is an environment variable called DEVKITARM with the path o Then get the compiler from https://github.com/pret/agbcc and run the following commands. - build.sh - install.sh PATH_OF_POKERUBY_DIRECTORY + ./build.sh + ./install.sh PATH_OF_POKERUBY_DIRECTORY Then in the pokeruby directory, build the tools. - build_tools.sh + ./build_tools.sh Finally, build the rom. diff --git a/data/specials.inc b/data/specials.inc index 6904a2b6b..73aa3e093 100644 --- a/data/specials.inc +++ b/data/specials.inc @@ -1,4 +1,5 @@ .macro def_special ptr +.global SPECIAL_\ptr .set SPECIAL_\ptr, __special__ .set __special__, __special__ + 1 .4byte \ptr |