Home
last modified time | relevance | path

Searched refs:BCD_DECODE (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/sys/arch/next68k/stand/boot/
H A Drtc.c113 #define BCD_DECODE(x) (((x) >> 4) * 10 + ((x) & 0xf)) in getsecs() macro
119 secs = BCD_DECODE(d) * (60*60*24) + in getsecs()
120 BCD_DECODE(h) * (60*60) + in getsecs()
121 BCD_DECODE(m) * 60 + in getsecs()
122 BCD_DECODE(s); in getsecs()