Remove all address comments

This commit is contained in:
mid-kid
2018-06-24 16:09:41 +02:00
parent 131875d3e3
commit 1d9a68dbdd
616 changed files with 12133 additions and 20380 deletions

View File

@@ -1,4 +1,4 @@
Random:: ; 2f8c
Random::
; A simple hardware-based random number generator (RNG).
; Two random numbers are generated by adding and subtracting
@@ -27,9 +27,8 @@ Random:: ; 2f8c
pop bc
ret
; 2f9f
BattleRandom:: ; 2f9f
BattleRandom::
; _BattleRandom lives in another bank.
; It handles all RNG calls in the battle engine, allowing
@@ -47,10 +46,9 @@ BattleRandom:: ; 2f9f
rst Bankswitch
ld a, [wPredefTemp + 1]
ret
; 2fb1
RandomRange:: ; 2fb1
RandomRange::
; Return a random number between 0 and a (non-inclusive).
push bc
@@ -81,4 +79,3 @@ RandomRange:: ; 2fb1
pop bc
ret
; 2fcb