-
Hi Clifford,
```
module hadder(a, b, s, c);
input a, b;
output s, c;
assign s = a ^ b;
assign c = a & b;
endmodule // hadder
module adder(ci, a, b, s, co);
input ci, a, b;
outp…
-
```
module hadder(a, b, s, c);
input a, b;
output s, c;
assign s = a ^ b;
assign c = a & b;
endmodule
module top(a, b, led_7, led_6, led_5, led_4, led_3, led_2, led_1, led_0);
inpu…
-
---
Author Name: **Neil Steiner**
Original Redmine Message: 1268 from https://www.veripool.org
---
[Apologies if this is more appropriately posted in the Usage forum.]
I employ Verilator as a s…
-
Work in progress:
```
# library(devtools)
# install_github("qdap", "trinker")
p_load(qdap)
head(LIST[[1]])
x
-
Runtime.WriteGlobal("", new Something);
if(!Runtime.ReadGlobal("")) MessageBox(0, "Debug", "Debug", MB_OK);
In the above code, the message box appears, meaning that the global data being stored is no…
LB-- updated
12 years ago