摘要: 明日更新 阅读全文
posted @ 2020-05-25 08:49 John_K 阅读(108) 评论(0) 推荐(0)
摘要: Part I: const variable const is a complie time constraint that an object can not be modified. const int i = 0; i = 9 ; // error const int *pi = &i; // 阅读全文
posted @ 2020-05-25 08:47 John_K 阅读(175) 评论(0) 推荐(0)
摘要: Understanding Rvalue and Lvalue C++ 11 instroduced rvalue reference. Lvalue- an object that occupies some identifiable location in memory. Rvalue- any 阅读全文
posted @ 2020-05-25 08:45 John_K 阅读(384) 评论(0) 推荐(0)
摘要: Latch应用总结!附Time Borrowing,Lockup,Clock Gating Check概念解析 The following article is from RTL2GDS Author 老本 Benjamin RTL2GDS 数字集成电路设计中从RTL到GDS Tapeout整个过程 阅读全文
posted @ 2020-05-25 03:30 John_K 阅读(2594) 评论(0) 推荐(0)