摘要: linux中 find 命令使用总结(转)简化文件系统的管理find命令具有一长串令人生畏的选项和开关,它们会阻碍人们深入地学习该命令,但正是因为其范围广阔,真正的 Explorer 并不会被它们吓倒。一条好的通用原则在简化一个复杂问题时都会经过漫长的过程。启动一个 xterm,并尝试执行下面的命令... 阅读全文
posted @ 2014-11-05 18:02 CHIPER 阅读(360) 评论(0) 推荐(0) 编辑
摘要: GNU在目录树中查找的时候,是根据所给的名字从根节点开始从左到右匹配。根据优先级规则,直到在某一个节点找到结果了才会移动到下一个文件名字。1.找空目录 find ./path -depth -type d -empty2.找空文件 find ./path -depth -type f -empty3... 阅读全文
posted @ 2014-11-05 17:46 CHIPER 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1.forever2.repeat3.while4.forThe for statement accomplishes the same results as the following pseudo-code that is based on the while loop: begin initi... 阅读全文
posted @ 2014-11-04 19:01 CHIPER 阅读(151) 评论(0) 推荐(0) 编辑
摘要: conditional statementcasestatement1. conditional statement if(expression) statement_or_null[else statement_or_null] | if_else_if_statementIf the expre... 阅读全文
posted @ 2014-11-04 18:55 CHIPER 阅读(332) 评论(0) 推荐(0) 编辑
摘要: assign / deassginforce /releasethe procedural continuous assignments(using keywords assign and force) are procedural statements that allow expressions... 阅读全文
posted @ 2014-11-04 16:27 CHIPER 阅读(805) 评论(0) 推荐(0) 编辑
摘要: BLOCKING ASSIGNMENTS1.A blocking procedural assignment statement shall be exectuted before the execution of the statements that follow it in a sequen... 阅读全文
posted @ 2014-11-04 15:14 CHIPER 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1.procedural assignments are used for updating reg ,integer , time ,real,realtime and memory data types.2.difference between procedural assignments an... 阅读全文
posted @ 2014-11-04 14:14 CHIPER 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1.Sequential statement groups the begin-end keywords: .group several statements togethor .cause the statements to be evaluated sequentially(one at a t... 阅读全文
posted @ 2014-11-03 20:01 CHIPER 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1.verilog behavioral models contain procedural statements that control the simulation and manipulate variables of the data types.These statements are ... 阅读全文
posted @ 2014-11-03 19:37 CHIPER 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 理解系统这是第一条股则,因为它是最重要的。阅读手册。它会告诉你在使用除草机时,要在除草头上涂润滑油,这样除草绳就不会被烧化。仔细阅读每一个细节。关于微处理器如何处理中断的详细信息就隐藏在数据手册的第37页。掌握基础知识。点据本身就会发出很大的噪声。了解工作流程。引擎的转速可能与轮胎的转速不同,这是由... 阅读全文
posted @ 2014-11-02 02:36 CHIPER 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 信号数据流向追踪(特别是涉及到PAD内外模块和PAD模块这三个模块):1.每一个SOC的外围都有PAD,PAD的管脚好多是inout类型的。 singal_pad作为输入和输出都有会OEN /IE之类的使能信号,可以观测使能信号判断inout是输入还是输出。2.模块内部一般不允许有inout类型,而... 阅读全文
posted @ 2014-11-01 15:31 CHIPER 阅读(394) 评论(0) 推荐(0) 编辑
摘要: Verilog的inout双向端口的使用和仿真芯片外部引脚很多都使用inout类型的,为的是节省管腿。一般信号线用做总线等双向数据传输的时候就要用到INOUT类型了。就是一个端口同时做输入和输出。 inout在具体实现上一般用三态门来实... 阅读全文
posted @ 2014-11-01 10:12 CHIPER 阅读(1874) 评论(0) 推荐(0) 编辑
摘要: 引言: 由于在c代码中看到过打印彩色字, 又对PS1 想进一步了解,才有了这篇博文。----------------------------------------Linux 终端控制台字体颜色 ----------------------------------------Linux 终端控制台字... 阅读全文
posted @ 2014-10-31 01:10 CHIPER 阅读(877) 评论(0) 推荐(0) 编辑
摘要: ARM伪指令在ARM汇编语言程序里,有一些特殊指令助记符,这些助记符与指令系统的助记符不同,没有相对应的操作码,通常称这些特殊指令助记符为伪指令,他们所完成的操作称为伪操作。伪指令在源程序中的作用是为完成汇编程序作各种准备工作的,这些伪指令仅在汇编过程中起作用,一旦汇编结束,伪指令的使命就完成。在A... 阅读全文
posted @ 2014-10-31 00:37 CHIPER 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 1.$monitor 进程同一时间有且仅有一个,若多次调用$monitor,新进程会代替以前的monitor进程。2.$fmonitor可以同时存在任意个。3.一般不用$monitor系统函数。4.使用$monitor时,要一次把所有观测的信号作为参数在同一个$monitor用观测信号变化状态。 阅读全文
posted @ 2014-10-21 18:01 CHIPER 阅读(1558) 评论(0) 推荐(1) 编辑