代码搜索:X
找到约 10,000 项符合「X」的源代码
代码结果 10,000
www.eeworm.com/read/478131/6720657
x03 teaching.x03
www.eeworm.com/read/478253/6722781
vhd x_or2.vhd
library ieee;
use ieee.std_logic_1164.all;
entity x_or2 is
port (
in1 : in bit ;
in2 : in bit ;
out1 : out bit) ;
end x_or2;
entity and_gate is
port (
a : in bit ;
b : in bit ;
c :
www.eeworm.com/read/478253/6722784
vhd x_or1.vhd
---------------二输入或门程序模块(行为级)--------------
library ieee;
use ieee.std_logic_1164.all;
entity x_or1 is
port (
in1 : in bit ;
in2 : in bit ;
out1 : out bit) ;
end x_or1;
architecture behavior
www.eeworm.com/read/477449/6735632
gif xfzs_x.gif
www.eeworm.com/read/477556/6738382
h 240x.h
;*************************************************************
; File Name: 240x.h
;
; Description: 240x Peripheral Registers + other useful definitions
;
;=======================================
www.eeworm.com/read/476941/6743248
h x86.h
// Routines to let C code use special x86 instructions.
static inline uchar
inb(ushort port)
{
uchar data;
asm volatile("in %1,%0" : "=a" (data) : "d" (port));
return data;
}
static inline vo
www.eeworm.com/read/476907/6754390
m x_fnct.m
function y=x_fnct(x,funfcn,p1,p2,p3)
% y=x_fnct(x,funfcn,p1,p2,p3)
% Returns the function funfcn(x) times x
args=[];
for nn=1:nargin-2
args=[args,',p',int2str(nn)];
end
args=[args,')'] ;
www.eeworm.com/read/476387/6758663