- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
不,对我来说它不起作用。它在综合过程中显示错误:顶部函数 Adder
没有输出。可能的原因有:
头文件
#ifndef ADDERS_H_
#define ADDERS_H_
#include <cmath>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <cstdlib>
using namespace std;
// Types and top-level function prototype //
int adders(int in1, int in2, int in3);
#include "ap_int.h"
typedef ap_int<8> in1_t;
typedef ap_int<8> in2_t;
typedef ap_int<8> out_t;
void Adder(in1_t inA, in2_t inB, out_t sumAB);
#endif
测试台代码
#include <stdio.h>
#include "ap_int.h"
#include "Adder.h"
int main()
{
in1_t inA;
in2_t inB;
out_t sumAB;
inA = 15;
inB = 15;
sumAB = inA + inB;
Adder(inA, inB, sumAB);
cout << "A = "<< inA;
printf("\n");
cout << "B = " << inB;
printf("\n");
cout << "SUM = "<< sumAB;
printf("\n");
}
最佳答案
您的错误是您正在按值传递加法器函数的输出参数。在 C 中,对此类值的更新仅在函数内部可见,不会传播到调用者。您应该通过指针或引用传递它,或者简单地通过从函数返回一个值,如 @jp-helemons 建议的那样。例如:
void adder(in_t inA, in_t inB, out_t& sumAB);
Here是一篇很好的文章,解释了通过引用传递函数参数。
关于c - VIVADO HLS 综合错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42850519/
这一次将使用pymysql来进行一次对MySQL的增删改查的全部操作,相当于对前五次的总结: 先查阅数据库: 现在编写源码进行增删改查操作,源码为: ?
我收到警告: One or more signals are missing in the sensitivity list of always block. always@(Address)begi
我正在寻找一个完整的 java 日期管理库,它可以让我理解像这样的字符串: 明天中午 => 2011-10-20 12:00 今天下午 4 点 => 2011-10-20 16:00 等... 但如果
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
下学期我可能会成为我大学网络编程类(class)教学团队的一员,我想知道要给学生布置什么样的 Javascript 作业。从编程的 Angular 来看,本类(class)不是入门类(class)。
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
已结束。此问题不符合 Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找书籍、工具、软件库、教程或其他非现场资源的问题对于 Stack Overflow 来说
我将我的 Gitlab 迁移到了新域。我想将所有 HTTP 请求从旧 URL 重定向到新 URL。两个域当前都指向同一服务器(使用 A DNS 记录)。 我使用 Gitlab Omnibus 包,并捆
只需在新配置的 CentOS 6.5 VM 上使用 omnibus 安装程序设置新的 Gitlab 安装。我有点 Linux 菜鸟,但我一直在尝试设置 Gitlab 安装,并且能够通过主机访问安装。
我试图更好地了解合成如何在没有指定其他条件的过程中工作。 我认为这不是编码方式,因为我没有考虑其他选项,但我的问题是如何解释这段代码? process(clock) begin if (clock'e
创建以下内容时: create view v (a, b) as select 1, 2 from dual; create or replace package p as type t is t
我是一名优秀的程序员,十分优秀!