mirror of
https://github.com/fadden/6502bench.git
synced 2024-10-31 19:04:44 +00:00
8d9a27ae0c
Also, tweaked the HTML templates.
39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="stylesheet" href="SGStyle.css"/>
|
|
|
|
<meta name="description" content="SourceGen-generated disassembly of $ProjectName$"/>
|
|
<title>$ProjectName$ Disassembly</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p style="font-size:smaller;"><a href="./">(back to project page)</a></p>
|
|
<h1>$ProjectName$ Disassembly</h1>
|
|
|
|
<div id="code-lines">
|
|
<!-- The CodeLines marker is not optional, and may only appear once -->
|
|
$CodeLines$
|
|
</div>
|
|
|
|
<!-- SymbolTable is optional; remove this entire section from the template if you don't want it -->
|
|
<div id="symbol-table">
|
|
<h2>Symbol Table</h2>
|
|
$SymbolTable$
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<hr/>
|
|
<p>HTML generated by <a href="https://6502bench.com/">6502bench SourceGen</a> v$AppVersion$
|
|
on $CurrentDate$ <!--$CurrentTime$--></p>
|
|
<p>Expression style: $ExpressionStyle$</p>
|
|
<!-- parameters: $GenParameters$ -->
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|