创建数组
int[] a {1,2,3};int[] a new int[]{1,2,3};int[] a new int[3];ArrayList<Integer> arr new ArrayList<>();
添加元素
arr.add(99);
//将99加入到数组末尾arr.add(3,99);
//将99加入到指定索引3处访问元素
int c1 c[1];
int arr1 arr.get(1);
…
FPGA FIFO 读取模式分两种:
Normal Mode: In normal mode, the “rdreq” signal serves as the read request or read enable. When this signal goes high, the data output provides the first data from the FIFO.Essentially, in normal mode, data is availa…