Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
aidanozo
Oct 27th, 2024
1,088
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
VeriLog
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
module
D_flip_flop
(
output
reg
Q
,
input
D
,
clk
,
rst_n
)
;
always
@
(
posedge
clk
or
negedge
rst_n
)
begin
if
(
!
rst_n
)
Q
<=
0
;
else
Q
<=
D
;
end
endmodule
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
⭐⭐ Free Crypto Method ⭐⭐ ✅
JavaScript | 8 min ago | 0.67 KB
# tk_subtractive_blend_polygons.py
Python | 15 min ago | 3.59 KB
💎💎 QUICK $2,500 IN 2 HOURS
JavaScript | 18 min ago | 0.67 KB
Untitled
C++ | 18 min ago | 38.66 KB
Untitled
VeriLog | 19 min ago | 0.14 KB
Untitled
VeriLog | 22 min ago | 0.15 KB
✅ EARN 10,500$ IN LESS THAN 10 MINUTES OF WOR...
JavaScript | 28 min ago | 0.67 KB
🔥🔥🔥 QUICK $2,500 IN 2 HOURS 🔥🔥🔥
JavaScript | 38 min ago | 0.67 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!