*** empty log message ***

This commit is contained in:
keie 1985-03-04 16:08:41 +00:00
parent 4b1965afbc
commit 7a30dc4868
15 changed files with 124 additions and 0 deletions

9
mach/pmds4/libsys/acct.s Normal file
View file

@ -0,0 +1,9 @@
.define _acct
.extern _acct
_acct: trap #0
.short 0x33
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,9 @@
.define _chdir
.extern _chdir
_chdir: trap #0
.short 0xC
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,9 @@
.define _chroot
.extern _chroot
_chroot: trap #0
.short 0x3D
bcc 1f
jmp cerror
1:
clr.l d0
rts

9
mach/pmds4/libsys/lock.s Normal file
View file

@ -0,0 +1,9 @@
.define _lock
.extern _lock
_lock: trap #0
.short 0x35
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,5 @@
.define _pause
.extern _pause
_pause: trap #0
.short 0x1D
rts

View file

@ -0,0 +1,9 @@
.define _ptrace
.extern _ptrace
_ptrace: trap #0
.short 0x1A
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,10 @@
.define _setgid
.extern _setgid
.text
_setgid: trap #0
.short 0x2E
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,10 @@
.define _setuid
.extern _setuid
.text
_setuid: trap #0
.short 0x17
bcc 1f
jmp cerror
1:
clr.l d0
rts

10
mach/pmds4/libsys/stime.s Normal file
View file

@ -0,0 +1,10 @@
.define _stime
.extern _stime
.text
_stime: trap #0
.short 0x19
bcc 1f
jmp cerror
1:
clr.l d0
rts

5
mach/pmds4/libsys/sync.s Normal file
View file

@ -0,0 +1,5 @@
.define _sync
.extern _sync
_sync: trap #0
.short 0x24
rts

10
mach/pmds4/libsys/tell.s Normal file
View file

@ -0,0 +1,10 @@
.define _tell
.extern _tell
_tell:
pea 1
clrl.l -(sp)
mov.l 12(sp),-(sp)
jsr _lseek
add #12,sp
rts

View file

@ -0,0 +1,6 @@
.define _times
.extern _times
_times:
trap #0
.short 0x2B
rts

View file

@ -0,0 +1,6 @@
.define _umask
.extern _umask
.text
_umask: trap #0
.short 0x3C
rts

View file

@ -0,0 +1,9 @@
.define _umount
.extern _umount
_umount: trap #0
.short 0x16
bcc 1f
jmp cerror
1:
clr.l d0
rts

View file

@ -0,0 +1,8 @@
.define _utime
.extern _utime
_utime: trap #0
.short 0x1E
bcc 1f
jmp cerror
1:
rts