fix: errmod --> errmon
This commit is contained in:
parent
10caf5c785
commit
54a85f705b
3 changed files with 13 additions and 1 deletions
|
@ -10,6 +10,7 @@ alarm.s
|
||||||
chdir.s
|
chdir.s
|
||||||
chmod.s
|
chmod.s
|
||||||
chown.s
|
chown.s
|
||||||
|
chroot.s
|
||||||
close.s
|
close.s
|
||||||
creat.s
|
creat.s
|
||||||
dup.s
|
dup.s
|
||||||
|
|
11
mach/vax4/libbsd4_1a/chroot.s
Normal file
11
mach/vax4/libbsd4_1a/chroot.s
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
.globl _chroot
|
||||||
|
.set chroot,61
|
||||||
|
|
||||||
|
.globl errmon
|
||||||
|
_chroot:
|
||||||
|
.word 0x0000
|
||||||
|
chmk $chroot
|
||||||
|
bcc 1f
|
||||||
|
jmp errmon
|
||||||
|
1:
|
||||||
|
ret
|
|
@ -6,7 +6,7 @@ _mknod:
|
||||||
.word 0x0000
|
.word 0x0000
|
||||||
chmk $mknod
|
chmk $mknod
|
||||||
bcc 1f
|
bcc 1f
|
||||||
jmp errmod
|
jmp errmon
|
||||||
1:
|
1:
|
||||||
clrl r0
|
clrl r0
|
||||||
ret
|
ret
|
||||||
|
|
Loading…
Reference in a new issue