diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-02-04 07:25:51 -0800 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-02-04 07:25:51 -0800 |
commit | 1202e68d2f695d4b91d184bd43139dbe10cb8131 (patch) | |
tree | 504954f57273cae14de4618a82770c4e4e2e5dd9 /home/random.asm | |
parent | 80465fc6e6f1455f4ae65b5c0db54b9953ca0cc5 (diff) | |
parent | 7c02c2bb31317c31446a5907fe68f26dabb4858f (diff) |
Merge pull request #228 from yenatch/nuke-globals
Nuke globals.asm
Diffstat (limited to 'home/random.asm')
-rw-r--r-- | home/random.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/random.asm b/home/random.asm index 0f46da9e4..100b4d37b 100644 --- a/home/random.asm +++ b/home/random.asm @@ -1,4 +1,4 @@ -Random: ; 2f8c +Random:: ; 2f8c ; A simple hardware-based random number generator (RNG). ; Two random numbers are generated by adding and subtracting @@ -29,7 +29,7 @@ Random: ; 2f8c ret ; 2f9f -BattleRandom: ; 2f9f +BattleRandom:: ; 2f9f ; _BattleRandom lives in another bank. ; It handles all RNG calls in the battle engine, allowing @@ -50,7 +50,7 @@ BattleRandom: ; 2f9f ; 2fb1 -Function2fb1: ; 2fb1 +Function2fb1:: ; 2fb1 push bc ld c, a xor a |