view clojure/com/aurellem/gb/constants.clj @ 272:a60ea8632ff4

beginning work on hxc-pokemon-base, the collection of base stats, battle sprite data, etc.
author Dylan Holmes <ocsenave@gmail.com>
date Tue, 27 Mar 2012 00:59:43 -0500
parents c9a855de1d07
children 1f14c1b8af7e
line wrap: on
line source
1 (ns com.aurellem.gb.constants)
3 (def pokemon-record-width 44)
5 (def end-of-name-marker 0x50)
6 (def max-name-length 10)
7 (def name-width 11)
9 (def pokemon-record-begin 0xD162)
10 (def pokemon-record-end 0xD2F5)
12 (def D-memory-end 0xD41B)