Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/data/items/vending_prices.asm
1271 views
1
MACRO vend_item
2
db \1
3
bcd3 \2
4
ENDM
5
6
VendingPrices:
7
; item id, price
8
vend_item FRESH_WATER, 200
9
vend_item SODA_POP, 300
10
vend_item LEMONADE, 350
11
12