代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/347709/11647125
c fet140_dma_14.c
//******************************************************************************
// MSP-FET430P140 Demo - DMA0/1/2, USART0 SPI 3-Wire SPI Master P1.x Exchange
//
// Description: SPI Master commun
www.eeworm.com/read/261270/11656369
v pulse.v
module Pulse
(
CLK,
Trigger,
PulseOut
);
input CLK;
input Trigger;
output PulseOut;
reg Q1,Q2;
assign PulseOut =Q1&(~Q2);
always @(negedge CLK)
begin
Q1
www.eeworm.com/read/347162/11686727
c fet140_dma_15.c
//******************************************************************************
// MSP-FET430P140 Demo - DMA0/1/2, USART0 SPI 3-Wire SPI Slave P1.x Exchange
//
// Description: SPI Master communi
www.eeworm.com/read/347162/11686857
c fet140_dma_16.c
//******************************************************************************
// MSP-FET430P140 Demo - DMA0/1/2, USART1 SPI 3-Wire Master P1.x Exchange
//
// Description: SPI Master communicat
www.eeworm.com/read/347162/11686892
c fet140_dma_14.c
//******************************************************************************
// MSP-FET430P140 Demo - DMA0/1/2, USART0 SPI 3-Wire SPI Master P1.x Exchange
//
// Description: SPI Master commun
www.eeworm.com/read/260716/11706292
asm mouse.asm
TITLE " MOUSE "
LIST P=16C54,R=O
;
;*******************************************
;* *
;* MOUSE CONTROLLER *
;*
www.eeworm.com/read/260689/11708460
sql 数据库实验习题2.4.sql
/*USE SCHOOL
GO
CREATE TRIGGER T1 ON WORKER
FOR INSERT,UPDATE
AS
IF(SELECT SAGE FROM INSERTED)
www.eeworm.com/read/260250/11736850
txt sql2005更新工资触发器.txt
CREATE TRIGGER 更新工资
on 基本档案
FOR UPDATE
AS
DECLARE @MyID CHAR(50)
DECLARE @MySalary float
SELECT @MyID=员工编号 FROM INSERTED
SELECT @MySalary=基本工资 FROM INSERTED
Update 工资核算表 Set 基本工资=@MySalary
www.eeworm.com/read/156228/11817344
logscript
-- ******************************************************************************
-- logScript: Script for creating log table and related triggers
-- Usage:
-- $ sqlite3 msgdatabase < logScri
www.eeworm.com/read/156228/11817381
logscriptafter
-- ******************************************************************************
-- logScriptAFTER: Script for creating log table and related triggers
-- Usage:
-- $ sqlite3 msgdatabase < lo