OpenCores
URL https://opencores.org/ocsvn/test_project/test_project/trunk

Subversion Repositories test_project

[/] [test_project/] [trunk/] [linux_sd_driver/] [include/] [linux/] [bcd.h] - Blame information for rev 62

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 62 marcus.erl
/* Permission is hereby granted to copy, modify and redistribute this code
2
 * in terms of the GNU Library General Public License, Version 2 or later,
3
 * at your option.
4
 */
5
 
6
/* macros to translate to/from binary and binary-coded decimal (frequently
7
 * found in RTC chips).
8
 */
9
 
10
#ifndef _BCD_H
11
#define _BCD_H
12
 
13
#define BCD2BIN(val)    (((val) & 0x0f) + ((val)>>4)*10)
14
#define BIN2BCD(val)    ((((val)/10)<<4) + (val)%10)
15
 
16
/* backwards compat */
17
#define BCD_TO_BIN(val) ((val)=BCD2BIN(val))
18
#define BIN_TO_BCD(val) ((val)=BIN2BCD(val))
19
 
20
#endif /* _BCD_H */

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.