From 3d52b0d475b6d9e5379d1ac5ec5259fb230d3812 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 15 May 1992 13:55:14 +0000 Subject: [PATCH] Added missing files --- mach/minixST/libsys/LIST | 4 ++++ mach/minixST/libsys/_stsndrec.s | 33 +++++++++++++++++++++++++++++ mach/minixST/libsys/stbrksz.s | 21 ++++++++----------- mach/minixST/libsys/stcatch.s | 34 +++++++++++++----------------- mach/minixST/libsys/stsndrec.s | 37 ++++++++++----------------------- 5 files changed, 71 insertions(+), 58 deletions(-) create mode 100644 mach/minixST/libsys/_stsndrec.s diff --git a/mach/minixST/libsys/LIST b/mach/minixST/libsys/LIST index bed45182a..d77a1879f 100644 --- a/mach/minixST/libsys/LIST +++ b/mach/minixST/libsys/LIST @@ -117,5 +117,9 @@ _unlink.c _utime.c _wait.c _write.c +stbrksz.s +stcatch.s +stsndrec.s +_stsndrec.s vectab.c errno.c diff --git a/mach/minixST/libsys/_stsndrec.s b/mach/minixST/libsys/_stsndrec.s new file mode 100644 index 000000000..e80dfbe1f --- /dev/null +++ b/mach/minixST/libsys/_stsndrec.s @@ -0,0 +1,33 @@ +.define __send +.define __receive +.define __sendrec +.sect .text +.sect .rom +.sect .data +.sect .bss +! ===================================================================== +! send and receive = +! ===================================================================== +! send(), receive(), sendrec() destroy d0, d1, and a0. + +! See ../h/com.h for C definitions +SEND = 1 +RECEIVE = 2 +BOTH = 3 + +.sect .text + +__send: move.w #SEND,d0 ! send(dest, ptr) + bra L0 + +__receive: + move.w #RECEIVE,d0 ! receive(src, ptr) + bra L0 + +__sendrec: + move.w #BOTH,d0 ! sendrec(srcdest, ptr) +L0: ! d0 = SEND/RECEIVE/BOTH + move.w 4(sp),d1 ! d1 = dest-src + move.l 6(sp),a0 ! a0 = message pointer + trap #0 ! trap to the kernel + rts ! return diff --git a/mach/minixST/libsys/stbrksz.s b/mach/minixST/libsys/stbrksz.s index 98c9b75be..ac57d43d7 100644 --- a/mach/minixST/libsys/stbrksz.s +++ b/mach/minixST/libsys/stbrksz.s @@ -1,13 +1,10 @@ -# - .define _brksize - .extern _end -#ifdef ACK - .sect .text - .sect .rom - .sect .data - .sect .bss -#endif ACK +.define __brksize +.extern endbss, __brksize +.sect .text +.sect .rom +.sect .data +.sect .bss - .sect .data -_brksize: - .data4 _end +.sect .data +__brksize: +.data4 endbss diff --git a/mach/minixST/libsys/stcatch.s b/mach/minixST/libsys/stcatch.s index 37f2e8d6e..1066f4c35 100644 --- a/mach/minixST/libsys/stcatch.s +++ b/mach/minixST/libsys/stcatch.s @@ -1,23 +1,17 @@ -# - .define _begsig - .extern _vectab - .extern _M -#ifdef ACK - .sect .text - .sect .rom - .sect .data - .sect .bss -#endif ACK - -#ifdef ALCYON -#define FREEREGS d0-d2/a0-a2 -#else #define FREEREGS d0-d1/a0-a1 -#endif + +.define __begsig +.extern __vectab +.extern __M +.sect .text +.sect .rom +.sect .data +.sect .bss + mtype = 2 ! M+mtype = &M.m_type - .sect .text -_begsig: +.sect .text +__begsig: movem.l FREEREGS,-(sp) clr.l d0 #ifdef ALCYON @@ -25,15 +19,15 @@ _begsig: #else move.w 16(sp),d0 ! d0 = signal number #endif - move.w _M+mtype,-(sp) ! push status of last system call + move.w __M+mtype,-(sp) ! push status of last system call move.w d0,-(sp) ! func called with signal number as arg asl.l #2,d0 ! pointers are four bytes on 68000 - move.l #_vectab,a0 + move.l #__vectab,a0 move.l -4(a0,d0),a0 ! a0 = address of routine to call jsr (a0) back: add.l #2,sp ! get signal number off stack - move.w (sp)+,_M+mtype ! restore status of previous system call + move.w (sp)+,__M+mtype ! restore status of previous system call movem.l (sp)+,FREEREGS add.l #2,sp ! remove signal number from stack rtr diff --git a/mach/minixST/libsys/stsndrec.s b/mach/minixST/libsys/stsndrec.s index fd2b18bc0..114a018f2 100644 --- a/mach/minixST/libsys/stsndrec.s +++ b/mach/minixST/libsys/stsndrec.s @@ -1,36 +1,21 @@ -# - .define _send - .define _receive - .define _sendrec -#ifdef ACK - .sect .text - .sect .rom - .sect .data - .sect .bss -#endif ACK +.define _send +.define _receive +.define _sendrec +.sect .text +.sect .rom +.sect .data +.sect .bss ! ===================================================================== ! send and receive = ! ===================================================================== ! send(), receive(), sendrec() destroy d0, d1, and a0. -! See ../h/com.h for C definitions -SEND = 1 -RECEIVE = 2 -BOTH = 3 +.sect .text - .sect .text - -_send: move.w #SEND,d0 ! send(dest, ptr) - bra L0 +_send: jmp __send _receive: - move.w #RECEIVE,d0 ! receive(src, ptr) - bra L0 + jmp __receive _sendrec: - move.w #BOTH,d0 ! sendrec(srcdest, ptr) -L0: ! d0 = SEND/RECEIVE/BOTH - move.w 4(sp),d1 ! d1 = dest-src - move.l 6(sp),a0 ! a0 = message pointer - trap #0 ! trap to the kernel - rts ! return + jmp __sendrec -- 2.34.1