mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-21 23:30:58 +00:00
8 lines
180 B
C
8 lines
180 B
C
|
|
/* add two BCD numbers */
|
|
unsigned int bcd_add(unsigned int a, unsigned int b);
|
|
|
|
/* print a 16-bit BCD to a specific address */
|
|
void draw_bcd_word(word address, word bcd_value);
|
|
|