V10/libc/sys/open.s

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

# C library -- open

# file = open(string, mode)
#
# file == -1 means error

	.set	open,5
.globl	_open
.globl  cerror

_open:
	.word	0x0000
	chmk	$open
	bcc 	noerror
	jmp 	cerror
noerror:
	ret