最新 最热

No.009 Palindrome Number

9. Palindrome NumberTotal Accepted: 136330Total Submissions: 418995Difficulty: Easy  Determine w

2018-02-27
1

​UVM(九)之sequencej机制续1

UVM(九)之sequencej机制续1当一个sequence启动起来之后,UVM会自动执行sequence的body任务,所以要产生各种和杨的激励,就要写好body任务。body这个任务完成的事...

2018-02-26
2

UVM模型(四)

UVM模型(四)1.常用到的uvm_component uvm_driver:所有的driver都要派生自uvm_driver。driver的功能就是向sequencer索要sequence

2018-02-26
0

ROM 单元

在数字系统中,由于ROM掉电后数据不会丢失,因此ROM单元也有着更广泛的应用。对于容量不大的ROM,在Verilog HDL中可以通过case语句来实现。下面给出一个8×8位的ROM设计实例。module rom(clk,cs_n,addm,dout ); input c...

2018-02-24
1

A+B for Input-Output Practice (VI)

http://acm.hdu.edu.cn/showproblem.php?pid=1094Problem DescriptionYour task is to calculate the sum

2018-01-17
1

Buildings

Problem DescriptionWe divide the HZNU Campus into N*M grids. As you can see from the picture below, the green grids represent the buidings. Given the size of t...

2018-01-17
0

Leetcode 49 Group Anagrams

Given an array of strings, group anagrams together. For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"],  Return:[ ["ate", "eat","tea"], ["na......

2018-01-12
1

Leetcode 42 Trapping Rain Water

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. For exa...

2018-01-12
0

Leetcode 71 Simplify Path

Given an absolute path for a file (Unix-style), simplify it. For example, path = "/home/", => "/ho

2018-01-12
0

Leetcode 70 Climbing Stairs

You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb

2018-01-12
1