summaryrefslogtreecommitdiff
path: root/extras/print_pc_items.py
blob: 7b9dc6c38fa2782fd849d9b6e3318e6ee4318a2c (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
#author: Bryan Bishop <kanzure@gmail.com>
#date: 2012-01-19
#spit out some constants

for x in range(1, 51):
    print "W_BOXITEM%.2d       EQU $%s" % (x, ("%.2x" % (0xd539+(x*2))).upper())
    print "W_BOXITEM%.2dQTY    EQU $%s" % (x, ("%.2x" % (0xd539+(x*2)+1)).upper())