V10/libc/sys/write.s

Compare this file to the similar file:
Show the results in this format:

# C library -- write

# nwritten = write(file, buffer, count);
#
# nwritten == -1 means error

	.set	write,4
.globl	_write
.globl  cerror

_write:
	.word	0x0000
	chmk	$write
	bcc 	noerror
	jmp 	cerror
noerror:
	ret