Adapated to use of new linker & assembler.
This commit is contained in:
parent
04e97ce36b
commit
23bf60a80e
|
@ -1,6 +1,11 @@
|
|||
.define _acct
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _acct
|
||||
.text
|
||||
.sect .text
|
||||
_acct: move.w #0x33,d0
|
||||
move.l 4(sp),a0
|
||||
jmp callc
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _chown
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _chown
|
||||
.text
|
||||
.sect .text
|
||||
_chown: move.w #0x10,d0
|
||||
move.l 4(sp),a0
|
||||
move.w 8(sp),d1
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _dup
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _dup
|
||||
.text
|
||||
.sect .text
|
||||
_dup: move.w #0x29,d0
|
||||
move.w 4(sp),a0
|
||||
jmp call
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _dup2
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _dup2
|
||||
.text
|
||||
.sect .text
|
||||
_dup2: move.w #0x29,d0
|
||||
move.w 4(sp),a0
|
||||
move.w 6(sp),d1
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _ftime
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _ftime
|
||||
.text
|
||||
.sect .text
|
||||
_ftime: move.w #0x23,d0
|
||||
move.l 4(sp),a0
|
||||
jmp callc
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _lock
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _lock
|
||||
.text
|
||||
.sect .text
|
||||
_lock: move.w #0x35,d0
|
||||
move.w 4(sp),a0
|
||||
jmp callc
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
.define _pipe
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _pipe
|
||||
_pipe:
|
||||
move.w #0x2A,d0
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _profil
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _profil
|
||||
.text
|
||||
.sect .text
|
||||
_profil: move.w #0x2C,d0
|
||||
move.l 4(sp),a0
|
||||
move.w 8(sp),d1
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _umask
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _umask
|
||||
.text
|
||||
.sect .text
|
||||
_umask: move.w #0x3C,d0
|
||||
move.w 4(sp),a0
|
||||
jmp call
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
.define _utime
|
||||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.sect .text
|
||||
.extern _utime
|
||||
.text
|
||||
.sect .text
|
||||
_utime: move.w #0x1E,d0
|
||||
move.l 4(sp),a0
|
||||
move.l 8(sp),d1
|
||||
|
|
Loading…
Reference in a new issue