pkg(iverilog-11.0.0): Added iverilog 11.0.0

This commit is contained in:
Brikaa 2021-09-26 13:25:13 +02:00
parent e5732ef459
commit 883d584c15
9 changed files with 43 additions and 3 deletions

View file

@ -146,7 +146,7 @@ router.ws('/connect', async (ws, req) => {
eventBus.on("exit", (stage, status) => ws.send(JSON.stringify({type: "exit", stage, ...status})))
ws.on("message", async (data) => {
try{
const msg = JSON.parse(data);
@ -194,7 +194,7 @@ router.ws('/connect', async (ws, req) => {
}
break;
}
}catch(error){
ws.send(JSON.stringify({type: "error", message: error.message}))
ws.close(4002, "Notified Error")