Skip to content

Commit

Permalink
Bug Fix: Verifying errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Nov 3, 2023
1 parent 06c2b97 commit d85953a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions blocks/Uint/Uint4/Uint4-01-bit.ice
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "1.2",
"package": {
"name": "UINT4-1bit-verilog",
"version": "0.1",
"version": "0.2",
"description": "UINT4-1bit-verilog: Extend a 1-bit unsigned integer to 4-bits. Verilog implementation ",
"author": "Juan González-Gómez (Obijuan)",
"image": "%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22448.598%22%20height=%22127.811%22%20viewBox=%220%200%20118.69152%2033.816643%22%3E%3Cg%20style=%22line-height:1.25%22%20font-weight=%22700%22%20font-size=%2245.504%22%20font-family=%22sans-serif%22%20fill=%22green%22%20stroke-width=%221.138%22%3E%3Cpath%20d=%22M0%200h8.554v19.886q0%204.11%201.333%205.888%201.356%201.755%204.4%201.755%203.066%200%204.399-1.755%201.355-1.778%201.355-5.888V0h8.554v19.886q0%207.043-3.532%2010.487-3.533%203.444-10.776%203.444-7.221%200-10.754-3.444Q0%2026.929%200%2019.886zM36.972%200h8.554v33.172h-8.554zM53.947%200H63.5l12.064%2022.752V0h8.11v33.172h-9.554L62.056%2010.421v22.751h-8.11zM88.119%200h30.573v6.466h-10.999v26.706H99.14V6.466H88.12z%22%20style=%22-inkscape-font-specification:'sans-serif%20Bold'%22/%3E%3C/g%3E%3C/svg%3E",
Expand Down Expand Up @@ -78,7 +78,7 @@
]
},
"params": [],
"code": "//-- Number of bits\nlocalparam N = 4;\n\n//-- Extend i with N-1 0s\nassign o = { {(N-1){0}} , i};"
"code": "//-- Number of bits\nlocalparam N = 4;\n\n//-- Extend i with N-1 0s\nassign o = { {(N-1){1'b0}} , i};"
},
"position": {
"x": 504,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
}
},
{
"id": "40c4271a-c9c8-4dc9-a69b-2612957051af",
"type": "440036958b88780c247e7852d25496040ce01344",
"id": "c45706be-56e7-4966-aa93-412591e023cc",
"type": "a4e8c16ea1c0ebc123bab8a9d25b07275cf8e4a9",
"position": {
"x": 560,
"y": 56
Expand All @@ -114,7 +114,7 @@
"port": "out"
},
"target": {
"block": "40c4271a-c9c8-4dc9-a69b-2612957051af",
"block": "c45706be-56e7-4966-aa93-412591e023cc",
"port": "1993c7e0-d407-4ae2-8c18-2f4cfab7cd1b"
}
},
Expand All @@ -131,7 +131,7 @@
},
{
"source": {
"block": "40c4271a-c9c8-4dc9-a69b-2612957051af",
"block": "c45706be-56e7-4966-aa93-412591e023cc",
"port": "a27a9eb1-cacc-489b-8841-b19428732584"
},
"target": {
Expand Down Expand Up @@ -889,10 +889,10 @@
}
}
},
"440036958b88780c247e7852d25496040ce01344": {
"a4e8c16ea1c0ebc123bab8a9d25b07275cf8e4a9": {
"package": {
"name": "UINT4-1bit-verilog",
"version": "0.1",
"version": "0.2",
"description": "UINT4-1bit-verilog: Extend a 1-bit unsigned integer to 4-bits. Verilog implementation ",
"author": "Juan González-Gómez (Obijuan)",
"image": "%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%22448.598%22%20height=%22127.811%22%20viewBox=%220%200%20118.69152%2033.816643%22%3E%3Cg%20style=%22line-height:1.25%22%20font-weight=%22700%22%20font-size=%2245.504%22%20font-family=%22sans-serif%22%20fill=%22green%22%20stroke-width=%221.138%22%3E%3Cpath%20d=%22M0%200h8.554v19.886q0%204.11%201.333%205.888%201.356%201.755%204.4%201.755%203.066%200%204.399-1.755%201.355-1.778%201.355-5.888V0h8.554v19.886q0%207.043-3.532%2010.487-3.533%203.444-10.776%203.444-7.221%200-10.754-3.444Q0%2026.929%200%2019.886zM36.972%200h8.554v33.172h-8.554zM53.947%200H63.5l12.064%2022.752V0h8.11v33.172h-9.554L62.056%2010.421v22.751h-8.11zM88.119%200h30.573v6.466h-10.999v26.706H99.14V6.466H88.12z%22%20style=%22-inkscape-font-specification:'sans-serif%20Bold'%22/%3E%3C/g%3E%3C/svg%3E",
Expand Down Expand Up @@ -967,7 +967,7 @@
]
},
"params": [],
"code": "//-- Number of bits\nlocalparam N = 4;\n\n//-- Extend i with N-1 0s\nassign o = { {(N-1){0}} , i};"
"code": "//-- Number of bits\nlocalparam N = 4;\n\n//-- Extend i with N-1 0s\nassign o = { {(N-1){1'b0}} , i};"
},
"position": {
"x": 504,
Expand Down

0 comments on commit d85953a

Please sign in to comment.