URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [sys/] [go32/] [getdate.c] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#include "dos.h" void getdate( struct date *dateblk) { union REGS regs; regs.h.ah = 0x2a; intdos( ®s, ®s); dateblk-> da_year = regs.x.cx; dateblk-> da_mon = regs.h.dh; dateblk-> da_day = regs.h.dl; }
Go to most recent revision | Compare with Previous | Blame | View Log