Mercurial > vba-clojure
annotate clojure/com/aurellem/gb/constants.clj @ 398:0591dcddf831
fixed bug where variables would be overwritten.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 13 Apr 2012 05:28:17 -0500 |
parents | 1f14c1b8af7e |
children | 0162dd315814 |
rev | line source |
---|---|
rlm@162 | 1 (ns com.aurellem.gb.constants) |
rlm@162 | 2 |
rlm@176 | 3 (def pokemon-record-width 44) |
rlm@176 | 4 |
rlm@176 | 5 (def end-of-name-marker 0x50) |
rlm@176 | 6 (def max-name-length 10) |
rlm@176 | 7 (def name-width 11) |
rlm@214 | 8 |
rlm@214 | 9 (def pokemon-record-begin 0xD162) |
rlm@222 | 10 (def pokemon-record-end 0xD2F5) |
rlm@222 | 11 |
rlm@377 | 12 (def D-memory-end 0xD41B) |
rlm@377 | 13 |
rlm@377 | 14 (def pokemon-list-start 0xD162) |