@(form: Form[RegisterForm])(implicit request: RequestHeader)
@request.flash.get("error").map { message =>
<div>@message</div>
}
Why can't you do bitwise operations on pointer in C, and is there a way around this?
答案 0 :(得分:0)
如您所知,问题在于以下几行:
sensor s1(hit0, echo0) ; // , CLOCK_50);
sensor s2(hit1, echo1) ; // , CLOCK_50);
在sensor
中,第一个端口hit
是输出。但是,您正在尝试将其连接到reg
,正如您在上面的行中指定的那样:
output reg hit0 = 1'b0;
output reg hit1 = 1'b0;
您应该将这些信号用作wire
s,而不是reg
s。