• 전문가 요청 쿠폰 이벤트
*상*
Bronze개인
팔로워0 팔로우
소개
등록된 소개글이 없습니다.
전문분야 등록된 전문분야가 없습니다.
판매자 정보
학교정보
입력된 정보가 없습니다.
직장정보
입력된 정보가 없습니다.
자격증
  • 입력된 정보가 없습니다.
판매지수
전체자료 15
검색어 입력폼
  • IIR filter verilog code
    `timescale 1ns / 1psmodule top (clk, reset, init, sel, coeff_b1, coeff_b2, coeff_b3, coeff_a2, coeff_a3, filter_in, filter_out);inputclk;inputreset;input init;input [1:0] sel;input [15:0] coeff_b1;input [15:0] coeff_b2;input [15:0] coeff_b3;input [15:0] coeff_a2;input [15:0] coeff_a3;input[15:0]filter_in;output[15:0]filter_out;wire[39:0]filter_in_w;wire[39:0]bq_out1;wire[39:0]bq_out2;wire[39:0]bq_out3;wire [39:0] bq_out4;wire[15:0]bq_out_type_conv;
    프로그램소스| 2007.08.02| 1,500원| 조회(1,085)
    미리보기
  • array multiplier 8 bit verilog code
    `timescale 1 ns / 10 ps module array_mult8 (clk, rst, a, b, out); input clk; input rst; input [7:0] a; input [7:0] b; output [15:0] out; reg [15:0] out; wire [15:0] out_t; wire [7:0] t1; wire [7:0] t2; wire [7:0] t3; wire [7:0] t4; wire [7:0] t5; wire [7:0] t6; wire [7:0] t7; wire [7:0] t8; wire [6:0] s1; wire [6:0] s2; wire [6:0] s3; wire [6:0] s4; wire [6:0] s5; wire [6:0] s6; wire [6:0] s7; wire [6:0] s8; wire [6:0] c1; wire [6:0] c2; wire [6:0] c3; wire [6:0] c4; wire [6:0] c5; wire [6:0] c6; wire [6:0] c7; wire [6:0] c8; and U1 (t1[0], a[0], b[0]); and U2 (t1[1], a[1], b[0]); and U3 (t1[2], a[2], b[0]); and U4 (t1[3], a[3], b[0]); and U5 (t1[4], a[4], b[0]); and U6 (t1[5], a[5], b[0]); and U7 (t1[6], a[6], b[0]); and U8 (t1[7], a[7], b[0]); and U9 (t2[0], a[0], b[1]); and U10 (t2[1], a[1], b[1]); and U11 (t2[2], a[2], b[1]); and U12 (t2[3], a[3], b[1]); and U13 (t2[4], a[4], b[1]); and U14 (t2[5], a[5], b[1]); and U15 (t2[6], a[6], b[1]); and U16 (t2[7], a[7], b[1]);
    프로그램소스| 2007.08.02| 1,000원| 조회(1,902)
    미리보기
  • 16bit booth multiplier verilog code 평가A좋아요
    `timescale 1 ns / 10 psmodule booth_mult (a, b, r); input [15:0] a; input [15:0] b; output [31:0] r; wire [31:0] r; wire [7:0] X_sel; wire [7:0] X_sel2; wire [7:0] NEG_sel; wire [16:0] PP0; wire [16:0] PP1; wire [16:0] PP2; wire [16:0] PP3; wire [16:0] PP4; wire [16:0] PP5; wire [16:0] PP6; wire [16:0] PP7; wire sum_n14, carry_n14; wire sum_n13, carry_n13; wire sum_n12, carry_n12; wire sum_n11, carry_n11; wire [1:0] sum_n10, carry_n10; wire [1:0] sum_n9, carry_n9; wire [2:0] sum_n8, carry_n8; wire [2:0] sum_n7, carry_n7; wire [3:0] sum_n6, carry_n6; wire [3:0] sum_n5, carry_n5; wire [4:0] sum_n4, carry_n4; wire [4:0] sum_n3, carry_n3; wire [5:0] sum_n2, carry_n2; wire [5:0] sum_n1, carry_n1; wire [6:0] sum0, carry0; wire [6:0] sum1, carry1; wire [6:0] sum2, carry2; wire [6:0] sum3, carry3; wire [6:0] sum4, carry4; wire [5:0] sum5, carry5; wire [5:0] sum6, carry6; wire [4:0] sum7, carry7; wire [4:0] sum8, carry8; wire [3:0] sum9, carry9; wire [3:0] sum10, carry10; wire [2:0] sum11, carry11; wire [2:0] sum12, carry12; wire [1:0] sum13, carry13; wire [1:0] sum14, carry14; wire sum15, carry15; wire sum16, carry16;
    프로그램소스| 2007.08.02| 1,000원| 조회(2,818)
    미리보기
  • carry look ahead adder (verilog code) 평가B괜찮아요
    `timescale 1 ns / 10 psmodule cla_40 (a, b, c0, s);input [39:0] a;input [39:0] b;input c0;output [39:0] s;wire t1, t2, t3;wire c1, c2;wire [2:0] Pgg;wire [2:0] Ggg;cla_16 cla_16_1 (.a(a[15:0]), .b(b[15:0]), .c0(c0), .s(s[15:0]), .Ggg(Ggg[0]), .Pgg(Pgg[0]));cla_16 cla_16_2 (.a(a[31:16]), .b(b[31:16]), .c0(c1), .s(s[31:16]), .Ggg(Ggg[1]), .Pgg(Pgg[1]));cla_8 cla_8_inst (.a(a[39:32]), .b(b[39:32]), .c0(c2), .s(s[39:32]), .Ggg(Ggg[2]), .Pgg(Pgg[2]));
    프로그램소스| 2007.08.02| 1,000원| 조회(2,069)
    미리보기
  • [asic] vhdl을 이용한 전가산기 설계
    1. 실험이론전가산기란?전가산기는 3개의 입력비트의 합을 계산하는 조합회로이며, 3개의 입력과 2개의 출력으로 구성된다. A와 B로 표시된 두개의 입력변수는 더해 질 현재 위치의 두 비트이며, C_in으로 표시된 세 번째 입력변수는 바로 이전 위치로부터 올라온 캐리이다. 3개의 비트를 더할 때 합은 0부터 3까지 나올 수 있고, 2와 3을 2진수로 표시하는데 2개의 출력이 필요하다. 2개의 출력 중 합에 대해서는 S_out, 캐리에 대해서는 C_out라는 기호로 표시한다.ABC_inSC_out**************************10100100010111 0*************1001C_out에 관한 카노맵위의 진리표를 보고 아래와 같이 카노맵으로 간소해 해보면,0*************1010S에 관한 카노맵S =A'B'C +A'BC'+ABC+ABC' = A'(B'C+BC')+A(BC+B'C')=A'(B ? C)+ A(B ? C)=A ? (B ? C)=A ? B ? CC_out =AB+A'BC+AB'C = AB+C(A'B+AB')=AB+C(A ? B)위의 식을 아래와 같은 회로도로 나타낼 수 있다.위의 회로도는 xor게이트와 and게이트로 이루어진 반가산기 두개와 or게이트 하나와 같음을 알 수 있다.2. VHDL code와 파형1) 전가산기(Dataflow)library IEEE;use IEEE.std_logic_1164.all;-- Entity declarationentity Full_Adder isport(X, Y, C_in : in std_logic;S_out, C_out : out std_logic);end Full_Adder;-- Architecture bodyarchitecture Dataflow_Description of Full_Adder isbeginS_out
    공학/기술| 2004.05.03| 5페이지| 1,000원| 조회(1,717)
    미리보기
전체보기
받은후기 18
18개 리뷰 평점
  • A+최고예요
    3
  • A좋아요
    5
  • B괜찮아요
    7
  • C아쉬워요
    2
  • D별로예요
    1
전체보기
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 04월 21일 화요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
5:46 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감