diff options
Diffstat (limited to 'asm/card.h')
-rw-r--r-- | asm/card.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/asm/card.h b/asm/card.h new file mode 100644 index 0000000..8c6d795 --- /dev/null +++ b/asm/card.h @@ -0,0 +1,11 @@ +#include <stdint.h> + +typedef struct +{ + const char *name_ptr; + uint8_t init_amount; + uint8_t price; + uint8_t f6; + uint8_t f7; +} rich4_card; +extern rich4_card card_table[]; |