summaryrefslogtreecommitdiff
path: root/main.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-08 01:45:54 -0400
committeryenatch <yenatch@gmail.com>2013-09-08 01:45:54 -0400
commit3b70005fb07750959a86c464a8a423a94f98f04b (patch)
tree03db5ca978039bbb151fb19253f9f52c5a5a0657 /main.asm
parentf0cf86777ba012485003a05fb5988a9812051808 (diff)
split item interfaces into common/item.asm
Diffstat (limited to 'main.asm')
-rw-r--r--main.asm75
1 files changed, 1 insertions, 74 deletions
diff --git a/main.asm b/main.asm
index a18461f51..b514c8fbb 100644
--- a/main.asm
+++ b/main.asm
@@ -807,81 +807,8 @@ Function2f3e: ; 2f3e
ret
; 2f3f
-DoItemEffect: ; 2f3f
- callba _DoItemEffect
- ret
-; 2f46
-CheckTossableItem: ; 2f46
- push hl
- push de
- push bc
- callba _CheckTossableItem
- pop bc
- pop de
- pop hl
- ret
-; 2f53
-
-TossItem: ; 2f53
- push hl
- push de
- push bc
- ld a, [hROMBank]
- push af
- ld a, BANK(_TossItem)
- rst Bankswitch
-
- call _TossItem
-
- pop bc
- ld a, b
- rst Bankswitch
- pop bc
- pop de
- pop hl
- ret
-; 2f66
-
-ReceiveItem: ; 2f66
- push bc
- ld a, [hROMBank]
- push af
- ld a, BANK(_ReceiveItem)
- rst Bankswitch
- push hl
- push de
-
- call _ReceiveItem
-
- pop de
- pop hl
- pop bc
- ld a, b
- rst Bankswitch
- pop bc
- ret
-; 2f79
-
-CheckItem: ; 2f79
- push hl
- push de
- push bc
- ld a, [hROMBank]
- push af
- ld a, BANK(_CheckItem)
- rst Bankswitch
-
- call _CheckItem
-
- pop bc
- ld a, b
- rst Bankswitch
- pop bc
- pop de
- pop hl
- ret
-; 2f8c
+INCLUDE "common/item.asm"
Random: ; 2f8c