1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 23:41:32 +00:00

verilog: enable signal not handled specially

This commit is contained in:
Steven Hugg 2021-05-13 13:36:04 -05:00
parent 74ce0e80c2
commit 4dfef4ca22
2 changed files with 1 additions and 4 deletions

View File

@ -293,6 +293,7 @@ export class WaveformView {
var oldValue = data[0] || 0;
var min = 0;
var max = (1 << meta.len) - 1;
//console.log(meta, oldValue, min, max);
if (max == 1) {
this.wfp.setSignalValue(row, oldValue > 0 ? 0 : 1);
} else {

View File

@ -173,7 +173,6 @@ abstract class VerilatorBase {
maxVclockLoop = 0;
clk = 0;
reset = 0;
enable?;
vl_fatal(msg:string) {
console.log(msg);
@ -183,9 +182,6 @@ abstract class VerilatorBase {
setTicks(T:number) { this.totalTicks = T|0; }
__reset() {
if (this.enable !== undefined) {
this.enable = 1; // enable enable if defined
}
if (this.reset !== undefined) {
this.totalTicks = 0;
this.reset = 0;