首页 \ 问答 \ VHDL编码风格和最佳实践参考指南[关闭](VHDL coding style and best practises reference guide [closed])

VHDL编码风格和最佳实践参考指南[关闭](VHDL coding style and best practises reference guide [closed])

你们中的任何人都知道一个好的VHDL编码风格指南和良好实践指南吗? 用sw有很多材料,但是用VHDL我没有看到一个参考例子。 我想因为每个制造商都有自己的综合工具,代码解释也会发生变化。

我正在寻找一本简短的指南,而不是一本大书。

谢谢!


Do any of you know about a good VHDL coding style guide and good practises guide? With sw there are a lot of material, but with VHDL I don't see a reference example. I supposed because each maker has its own synthesis tool, and the code interpretation changes.

I'm looking for a short guide instead of a large book.

Thanks!


原文:https://stackoverflow.com/questions/40657842
更新时间:2022-04-19 13:04

最满意答案

您可以使用PHP的array_reverse()方法来颠倒数组的顺序。 并使用foreach()循环显示数组中的所有图像,如下所示。

$string = get_field( 'slider' );
$split = explode ( '|', $string );

$split = array_reverse($split);

foreach($split as $img){
  echo "<li><img src='{$img}' /></li>";
}

You can use array_reverse() method of PHP to reverse the order of the array. And loop through it using foreach() to display all the images from the array as shown below.

$string = get_field( 'slider' );
$split = explode ( '|', $string );

$split = array_reverse($split);

foreach($split as $img){
  echo "<li><img src='{$img}' /></li>";
}

相关问答

更多
  • 您可以使用PHP的array_reverse()方法来颠倒数组的顺序。 并使用foreach()循环显示数组中的所有图像,如下所示。 $string = get_field( 'slider' ); $split = explode ( '|', $string ); $split = array_reverse($split); foreach($split as $img){ echo "
  • "; } You can use array_r ...
  • 您可以通过两个步骤执行此操作: ArrayList tempElements = new ArrayList(mElements); Collections.reverse(tempElements); You can do this in two steps: ArrayList tempElements = new ArrayList(mElements); Collections.reverse(tempElements);
  • 如果你喜欢单行: gets.strip.split(' ').reverse.join(' ') 这将输入1 2 3 45 678 9并将其转换为"9 678 45 3 2 1" If you like one-liners: gets.strip.split(' ').reverse.join(' ') This will take the input 1 2 3 45 678 9 and convert it to "9 678 45 3 2 1"
  • 事实证明,图片标签会根据定位的位置来指示灯箱图片。 因此,将与其关联的div标签的图像标签移动到第一个锚标签下方即可解决问题。 现在图像加载正确(图1的6)。
  • 下面是一个相当讨厌的方法来获得你需要的结果,快速而又脏。 function process(&$result, $record, $parent = NULL) { $f_id = $record['FolderID']; $f_name = $record['FolderName']; $f_data = $record['Folders']; if (!isset($result[$f_id])) $result[$f_id] = []; $result[$f ...
  • 尝试这个: $data = mysql_query("SELECT * FROM news ORDER BY date DESC") or die(mysql_error()); Try this: $data = mysql_query("SELECT * FROM news ORDER BY date DESC") or die(mysql_error());
  • PHP函数array_reverse()完全符合您的要求: $names = array('joey','kaiba','marik','yugi'); $reversed = array_reverse($names); print_r($reversed); 输出: Array ( [0] => yugi [1] => marik [2] => kaiba [3] => joey ) The PHP function array_reverse() does exa ...
  • 编辑 :这不适用于内置函数,您需要实现自己的排序解决方案。 您可以按照我打开的这个问题来了解更多信息。 这些解决方案的工作原理是巧合: $myArray = array("d" => 1, "f" => 2, "b" => 3, "c" => 4, "e" => 2); uasort($myArray, function($a, $b){ if($a == $b) return 1; else return $b - $a; }); print_r($myA ...
  • 请参阅如何在JavaScript中清空数组? 如果你只想要那个并选择你的武器 。 否则,严格回答问题,将索引从数组的长度迭代到零,你可以使用“向下” -->运算符 1 。 但这并不是必需的,在这种情况下,即使是下划线也不是必需的,因为.pop功能就足够了。 var arr = [1, 2, 3, 4, 5], index = arr.length; while (index --> 0) { console.log(index); arr.pop(); } conso ...
  • 你需要使用的函数是array_reverse() ,但我假设你正在谈论的那个。 要回答您的问题,您只需指定数组项而不是主数组: $array[0] = array_reverse($array[0]); // ^ ^ 如果您希望反转数组中的所有子数组,可以使用array_map() : $array = array_map('array_reverse', $array); The function you need to use is array ...
  • 相关文章

    更多
  • There is already an open DataReader associated with this Connection which must be closed first
  • Hadoop: The Definitive Guide
  • MongoDB: The Definitive Guide
  • HBase: The Definitive Guide
  • 关于 style="display:none" 得问题
  • Rails 风格指导
  • Supra Skytop III New Style Wine Red esign has many
  • Hadoop: The Definitive Guide 3rd edition (Final Release)
  • 微信公众平台开发最佳实践
  • 如何查看自己新浪微博的UID
  • 最新问答

    更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)