diff --git a/misc/yosysjs/demo01.html b/misc/yosysjs/demo01.html
deleted file mode 100644
index 3f9f737e9..000000000
--- a/misc/yosysjs/demo01.html
+++ /dev/null
@@ -1,197 +0,0 @@
-
-
-
-
-
module top(input clk, reset, input [7:0] A, output reg [7:0] Y);
- always @(posedge clock) begin
- Y <= A | {4{reset}};
- end
-endmodule
-
-
-
-
-
-
diff --git a/misc/yosysjs/yosysjs.js b/misc/yosysjs/yosysjs.js
deleted file mode 100644
index ea98c9b51..000000000
--- a/misc/yosysjs/yosysjs.js
+++ /dev/null
@@ -1,312 +0,0 @@
-var YosysJS = new function() {
- this.script_element = document.currentScript;
- this.viz_element = undefined;
- this.viz_ready = true;
-
- this.url_prefix = this.script_element.src.replace(/[^/]+$/, '')
-
- this.load_viz = function() {
- if (this.viz_element)
- return;
-
- this.viz_element = document.createElement('iframe')
- this.viz_element.style.display = 'none'
- document.body.appendChild(this.viz_element);
-
- this.viz_element.contentWindow.document.open();
- this.viz_element.contentWindow.document.write('