34 lines
1016 B
HTML
34 lines
1016 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<link rel="icon" href="<%= BASE_URL %>icon.png">
|
|
<title>Netlist</title>
|
|
<link rel="stylesheet" href="default-dark.css">
|
|
<link rel="stylesheet" href="netlist.css">
|
|
<link rel="stylesheet" href="vscode.css">
|
|
<link rel="stylesheet" href="iconfont.css">
|
|
<link rel="stylesheet" href="animation.css">
|
|
|
|
<script>
|
|
window.readNetFile = async () => {
|
|
const inputVcdFile = 'IF_ID.json';
|
|
const skin = 'dide.skin';
|
|
const r1 = await fetch(inputVcdFile);
|
|
const r2 = await fetch(skin);
|
|
const netJson = await r1.json();
|
|
const skinBinary = await r2.arrayBuffer();
|
|
return [ netJson, skinBinary ];
|
|
}
|
|
window.moduleName = 'IF_ID';
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
|
|
</html> |