From 23bf60a80e3c225fa96e89306c26363e27e2e3ef Mon Sep 17 00:00:00 2001 From: keie Date: Tue, 4 Jun 1985 11:30:54 +0000 Subject: [PATCH] Adapated to use of new linker & assembler. --- mach/m68k2/libsys/acct.s | 7 ++++++- mach/m68k2/libsys/chown.s | 7 ++++++- mach/m68k2/libsys/dup.s | 7 ++++++- mach/m68k2/libsys/dup2.s | 7 ++++++- mach/m68k2/libsys/ftime.s | 7 ++++++- mach/m68k2/libsys/lock.s | 7 ++++++- mach/m68k2/libsys/pipe.s | 5 +++++ mach/m68k2/libsys/profil.s | 7 ++++++- mach/m68k2/libsys/umask.s | 7 ++++++- mach/m68k2/libsys/utime.s | 7 ++++++- 10 files changed, 59 insertions(+), 9 deletions(-) diff --git a/mach/m68k2/libsys/acct.s b/mach/m68k2/libsys/acct.s index b4ba8b611..9fb1131d5 100644 --- a/mach/m68k2/libsys/acct.s +++ b/mach/m68k2/libsys/acct.s @@ -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 diff --git a/mach/m68k2/libsys/chown.s b/mach/m68k2/libsys/chown.s index 3e33b1705..e45f08ccf 100644 --- a/mach/m68k2/libsys/chown.s +++ b/mach/m68k2/libsys/chown.s @@ -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 diff --git a/mach/m68k2/libsys/dup.s b/mach/m68k2/libsys/dup.s index 75be7dde3..760c411f4 100644 --- a/mach/m68k2/libsys/dup.s +++ b/mach/m68k2/libsys/dup.s @@ -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 diff --git a/mach/m68k2/libsys/dup2.s b/mach/m68k2/libsys/dup2.s index 0227703cf..444a3829b 100644 --- a/mach/m68k2/libsys/dup2.s +++ b/mach/m68k2/libsys/dup2.s @@ -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 diff --git a/mach/m68k2/libsys/ftime.s b/mach/m68k2/libsys/ftime.s index 432ed3f0f..d9c7a914a 100644 --- a/mach/m68k2/libsys/ftime.s +++ b/mach/m68k2/libsys/ftime.s @@ -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 diff --git a/mach/m68k2/libsys/lock.s b/mach/m68k2/libsys/lock.s index 9ed995742..0a7a9340b 100644 --- a/mach/m68k2/libsys/lock.s +++ b/mach/m68k2/libsys/lock.s @@ -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 diff --git a/mach/m68k2/libsys/pipe.s b/mach/m68k2/libsys/pipe.s index 017adecfc..4060386d2 100644 --- a/mach/m68k2/libsys/pipe.s +++ b/mach/m68k2/libsys/pipe.s @@ -1,4 +1,9 @@ .define _pipe +.sect .text +.sect .rom +.sect .data +.sect .bss +.sect .text .extern _pipe _pipe: move.w #0x2A,d0 diff --git a/mach/m68k2/libsys/profil.s b/mach/m68k2/libsys/profil.s index c38e4981c..1ef072e94 100644 --- a/mach/m68k2/libsys/profil.s +++ b/mach/m68k2/libsys/profil.s @@ -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 diff --git a/mach/m68k2/libsys/umask.s b/mach/m68k2/libsys/umask.s index 8eae00cd2..066c7ffe6 100644 --- a/mach/m68k2/libsys/umask.s +++ b/mach/m68k2/libsys/umask.s @@ -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 diff --git a/mach/m68k2/libsys/utime.s b/mach/m68k2/libsys/utime.s index 0e0b6dd9a..634d449c3 100644 --- a/mach/m68k2/libsys/utime.s +++ b/mach/m68k2/libsys/utime.s @@ -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 -- 2.34.1