mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
7fb08aa749
git-svn-id: svn://svn.cc65.org/cc65/trunk@4487 b7a2c559-68d2-44c3-8de9-860c34a00d81
13 lines
175 B
ArmAsm
13 lines
175 B
ArmAsm
;
|
|
; set EINVAL error code and returns -1
|
|
;
|
|
.include "errno.inc"
|
|
.import __retminus
|
|
|
|
.export __inviocb
|
|
|
|
__inviocb:
|
|
lda #<EINVAL
|
|
jsr __seterrno
|
|
jmp __retminus ; return -1
|