*** empty log message ***

This commit is contained in:
em
1985-07-26 12:51:45 +00:00
parent 901520e90a
commit 36594308d3
63 changed files with 1214 additions and 0 deletions

15
mach/ns/libsys/write.s Normal file
View File

@@ -0,0 +1,15 @@
.define _write
.extern _write
.text
_write:
enter[], 0
save [r0,r1,r2,r3]
movd 4,r0
movd 12(fp),r1
movd 16(fp),r2
movd 0,r3
svc
movd 16(fp),r4
restore [r0,r1,r2,r3]
exit[]
ret 0