代码搜索结果
找到约 10,000 项符合
Test 的代码
test.vhd
package test_con is
constant N1:integer:=3686;
constant N2:integer:=10;
end test_con;
use work.test_con.all;
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee
test.vhd
-- megafunction wizard: %LPM_ROM%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: lpm_rom
-- ============================================================
-- File Name: test.vhd
-- Megafu
test.v
module Test;
reg clock,updn;
wire[0:3]cnt_out;
countupdown c1(clock,cnt_out,updn);
always #1 clock=~clock;
initial begin
clock=0;
updn=0;
#50 updn=1;
#100 $dumpflush;
$stop;
end
ini
test.m
% Example
[af, sf] = filters('4vm');
[af, sf] = filters('1vm');
[af, sf] = filters('3vm');
[af, sf] = filters('bi4');
N = 16;
x = randn(1,N);
% TEST ANALYSIS/SYNTHESIS FILTER BANK
[lo, bp, hi] =
test.cpp
/*
#define _M_AXP 64
#include
#include
#include
void run(int* pData,int left,int right)
{
int i,j;
int middle,iTemp;
i = left;
j = right;
mi