1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-09 06:29:38 +00:00
cc65/libsrc/common/_seterrno.s
2022-04-17 16:06:22 +02:00

23 lines
400 B
ArmAsm

;
; Ullrich von Bassewitz, 2004-05-13
;
; __seterrno: Will set __errno to the value in A and return zero in A. Other
; registers aren't changed. The function is C callable, but
; currently only called from asm code.
;
.include "errno.inc"
.code
.proc __seterrno
sta __errno
lda #0
sta __errno+1
rts
.endproc