mirror of
https://github.com/pret/pokeyellow.git
synced 2026-04-24 07:26:53 -05:00
11 lines
155 B
NASM
11 lines
155 B
NASM
MACRO vend_item
|
|
db \1
|
|
bcd3 \2
|
|
ENDM
|
|
|
|
VendingPrices:
|
|
; item id, price
|
|
vend_item FRESH_WATER, 200
|
|
vend_item SODA_POP, 300
|
|
vend_item LEMONADE, 350
|