view level2/modules/kernel/ficpt.asm @ 3195:6eb2edad80d8

L2: Introduce symbol KrnBlk to define kernel block number This is the block number that the kernel is loaded into. This is platform-specific, a function of the behaviour of the platform MMU/DAT. CRCs are unaffected by this change.
author Neal Crook <foofoobedoo@gmail.com>
date Thu, 01 Jun 2017 22:13:49 +0100
parents 039ddb7c8ad7
children
line wrap: on
line source

**************************************************
* System Call: F$Icpt
*
* Function: Sets the function to be called when a signal arrives.
*
*
* Input:  X = Address of intercept routine
*         U = Address of intercept routine data area
*
* Output: None
*
* Error:  CC = C bit set; B = error code
*
FIcpt    ldx   <D.Proc      get current process pointer
         ldd   R$X,u        Get vector for signal trap handler
         IFNE  H6309
         ldw   R$U,u        Get data area ptr for signal trap handler
         stq   P$SigVec,x   Save them in descriptor
         ELSE
         std   P$SigVec,x
         ldd   R$U,u
         std   P$SigDat,x
         ENDC
         clrb               clear errors
         rts                return