1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-02-16 17:30:27 +00:00

8 lines
180 B
C
Raw Normal View History

2020-04-09 21:35:38 -05:00
2022-08-11 15:27:20 -05:00
/* add two BCD numbers */
2020-04-09 21:35:38 -05:00
unsigned int bcd_add(unsigned int a, unsigned int b);
2022-08-11 15:27:20 -05:00
/* print a 16-bit BCD to a specific address */
void draw_bcd_word(word address, word bcd_value);