URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [sys/] [go32/] [gettime.c] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#include "dos.h" void gettime( struct time *tp) { union REGS regs; regs.h.ah = 0x2c; intdos( ®s, ®s); tp->ti_hour = regs.h.ch; tp->ti_min = regs.h.cl; tp->ti_sec = regs.h.dh; tp->ti_hund = regs.h.dl; }
Go to most recent revision | Compare with Previous | Blame | View Log