代码搜索:LOGIC
找到约 10,000 项符合「LOGIC」的源代码
代码结果 10,000
www.eeworm.com/read/241378/13148450
asm logic.asm
;----------------------------------------------------------
; Test for xor, not, shr, shl, cmp, asr, ror, rorc
;----------------------------------------------------------
org 0x0000
ldi
www.eeworm.com/read/240787/13197508
v logic.v
`timescale 1ns / 10ps
module logic(wb_clk_i, wb_rst_i, wb_adr_i, wb_dat_i, wb_dat_o, wb_we_i,
wb_stb_i, wb_cyc_i, wb_ack_o);
input wb_clk_i;
input wb_rst_i;
input [1:0] wb_adr_i;
www.eeworm.com/read/240787/13197525
pt logic.pt
port theport vars rw0:data1, rw1:data2, r2:out1, r3:out2;
input [:] data1, data2;
output [:] out1, out2;
assign out1 = data1 & data2;
assign out2 = data1 | data2;
www.eeworm.com/read/324119/13284344
h logic.h
/*
*
*
*
*/
#ifndef __BUILTIN_LOGIC_H
#define __BUILTIN_LOGIC_H
#include "itemlist.h"
void LoadLogic(ItemList & list);
void LogicalHelp();
//
//
//
#define TRUE 200
#define FALSE 201
#define
www.eeworm.com/read/324119/13284407
cpp logic.cpp
/*
*
*
*
*/
#include
#include "logic.h"
#include "interpreter.h"
using namespace std;
//
//
//
void LoadLogic(ItemList & list)
{
list.Add(new Operation(TRUE, "true", 0));
list.Add(
www.eeworm.com/read/323539/13337018
h logic.h
#define temp (*(volatile uint8_t *)(2))
#define trig (*(volatile uint8_t *)(3)) //触发位,0为低电平触发,1为高电平触发
#define trig_en (*(volatile uint8_t *)(4)) //触发忽略位,0为使能,1为忽略
#define fre_lo (*(vol
www.eeworm.com/read/323539/13337020
c logic.c
#include
#include
//#include
//#include
#include "logic.h"
#define DATAIN PINA
#define DATADIR DDRA
#define DATAOUT PORTA
#defi
www.eeworm.com/read/316786/13517763
c logic.c
# include
void main()
{
/* 定义一个整数类型的变量,用来存放后面算式的值 */
int logic;
int a = 1;
int b = 2;
int c = 3;
logic = a+b>c&&b=
www.eeworm.com/read/316370/13524060
cs logic.cs
// Custom.cs created with MonoDevelop
// User: Estelle at 12:09 PM 5/11/2008
//
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
//
using System;
using System.Reflectio
www.eeworm.com/read/316370/13524068