30 lines
847 B
HTML
30 lines
847 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 () => {
|
|
let inputVcdFile = 'test.json';
|
|
const response = await fetch(inputVcdFile);
|
|
const netJson = await response.json();
|
|
return [ netJson ];
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
|
|
</html> |