mirror of
https://github.com/pret/pokered.git
synced 2026-06-02 22:14:22 -05:00
11 lines
156 B
NASM
11 lines
156 B
NASM
vend_item: MACRO
|
|
db \1
|
|
bcd3 \2
|
|
ENDM
|
|
|
|
VendingPrices:
|
|
; item id, price
|
|
vend_item FRESH_WATER, 200
|
|
vend_item SODA_POP, 300
|
|
vend_item LEMONADE, 350
|