diff options
| author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-09-23 18:37:05 +0100 |
|---|---|---|
| committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-09-23 18:37:05 +0100 |
| commit | ca15abf2ffc14fdb92079f6fccff09eb04305d18 (patch) | |
| tree | d558ad09e12c7e6ed497f64573f858eb1fb9fa60 /src/engine/menus | |
| parent | 8dee6b7a11e85d6d4b9f8ec9fb9d53a499fd37dc (diff) | |
Split bank1
Diffstat (limited to 'src/engine/menus')
| -rw-r--r-- | src/engine/menus/common.asm | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/engine/menus/common.asm b/src/engine/menus/common.asm new file mode 100644 index 0000000..069d168 --- /dev/null +++ b/src/engine/menus/common.asm @@ -0,0 +1,52 @@ +ReceiveDeckConfiguration: + farcall _ReceiveDeckConfiguration + ret + +SendDeckConfiguration: + farcall _SendDeckConfiguration + ret + +ReceiveCard: + farcall _ReceiveCard + ret + +SendCard: + farcall _SendCard + ret + +; handles all the Card Pop! functionality +DoCardPop: + farcall _DoCardPop + ret + +Func_7576: + farcall Func_1991f + ret + +PreparePrinterConnection: + farcall _PreparePrinterConnection + ret + +PrintDeckConfiguration: + farcall _PrintDeckConfiguration + ret + +PrintCardList: + farcall _PrintCardList + ret + +Func_758a: + farcall Func_19eb4 + ret + +SetUpAndStartLinkDuel: + farcall _SetUpAndStartLinkDuel + ret + +Func_7594: + farcall Func_1a61f + ret + +OpenBoosterPack: + farcall _OpenBoosterPack + ret |
