diff options
-rw-r--r-- | extras/print_pc_items.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/extras/print_pc_items.py b/extras/print_pc_items.py deleted file mode 100644 index 7b9dc6c3..00000000 --- a/extras/print_pc_items.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/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()) - |