1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00
cc65/libsrc/common/ctime.s
cuz 43d8ecd567 Added lots of functions from time.h
git-svn-id: svn://svn.cc65.org/cc65/trunk@1507 b7a2c559-68d2-44c3-8de9-860c34a00d81
2002-11-12 22:06:02 +00:00

20 lines
269 B
ArmAsm

;
; Ullrich von Bassewitz, 12.11.2002
;
; char* __fastcall__ ctime (time_t* timep);
;
.export _ctime
.import _localtime, _asctime
.proc _ctime
; return asctime (localtime (timep));
jsr _localtime
jmp _asctime
.endproc