代码搜索:mealy
找到约 405 项符合「mealy」的源代码
代码结果 405
www.eeworm.com/read/429849/8785837
v mealy.v
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company : ITU
// Student Name: Selcuk ilke
// Student ID : 040040306
// Create
www.eeworm.com/read/285421/8841753
doc mealy.doc
www.eeworm.com/read/427377/8949221
c mealy.c
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/427377/8949367
h mealy.h
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/184529/9096011
c mealy.c
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/184529/9096151
h mealy.h
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/358502/10186154
c mealy.c
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/358502/10186202
h mealy.h
/*
|
| Copyright disclaimer:
| This software was developed at the National Institute of Standards
| and Technology by employees of the Federal Government in the course
| of their official d
www.eeworm.com/read/422532/10631185
tdf mealy.tdf
SUBDESIGN mealy
(
clk : INPUT;
reset : INPUT;
y : INPUT;
z : OUTPUT;
)
VARIABLE
ss: MACHINE WITH STATES (s0, s1, s2, s3);
BEGIN
ss.clk = clk;
ss.reset = reset;
TABLE
% curren
www.eeworm.com/read/349103/10851659
vhd mealy.vhd
entity MEALY is -- Mealy machine
port(X, CLOCK, RESET: in BIT;
Z: out BIT);
end;
architecture BEHAVIOR of MEALY is
type STATE_TYPE is (S0, S1, S2, S3);
signal CURRENT_STATE, N