Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- BASYS3
- uart 통신
- vivado
- atmega 128a
- gpio
- verilog
- soc 설계
- prescaling
- Recursion
- i2c 통신
- stop watch
- half adder
- test bench
- Pspice
- java
- ATMEGA128A
- Algorithm
- KEYPAD
- dataflow modeling
- FND
- behavioral modeling
- D Flip Flop
- hc-sr04
- structural modeling
- pwm
- Linked List
- DHT11
- LED
- Edge Detector
- ring counter
Archives
- Today
- Total
목록4 bit parallel adder / subtractor (1)
거북이처럼 천천히

1. Structural Modeling of 4 bit parallel adder / subtractor// Behavioral Modeling of and gate.module and_gate ( input a, b, output reg out); always @(a, b) begin case({a, b}) 2'b00 : out = 0; 2'b01 : out = 0; 2'b10 : out = 0; 2'b11 : out = 1; endcase endendmodule// Behavioral Modeling of xor gatemodule xor_gate ( input..
RTL Design/Verilog 연습
2024. 6. 30. 11:51