mirror of
https://github.com/geohot/qira
synced 2025-03-15 03:22:53 +03:00
77 lines
1.8 KiB
HTML
77 lines
1.8 KiB
HTML
<head>
|
|
<title>qira</title>
|
|
<!--<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">-->
|
|
</head>
|
|
|
|
<body>
|
|
<!--<div id="timeline">
|
|
<div id="cl_selector_box">
|
|
<input type="range" id="cl_selector" value="1" min="1" max="1">
|
|
</div>
|
|
</div>-->
|
|
<div id="vtimelinebox">
|
|
<div id="vtimeline">
|
|
</div>
|
|
</div>
|
|
<div id="onlypanel">
|
|
<div id="controls">
|
|
{{> controls}}
|
|
</div>
|
|
<div class="panelthing" id="idump">
|
|
{{> idump}}
|
|
</div>
|
|
<div class="panelthing" id="regviewer">
|
|
</div>
|
|
<div class="panelthing" id="datachanges">
|
|
{{>datachanges}}
|
|
</div>
|
|
<div class="panelthing" id="hexeditor">
|
|
{{> memviewer}}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
<template name="controls">
|
|
<input spellcheck="false" id="control_clnum" class="control datachange" value={{clnum}} />
|
|
<input spellcheck="false" id="control_iaddr" class="control datainstruction" value="{{iaddr}}" />
|
|
<input spellcheck="false" id="control_daddr" class="control datamemory" value="{{daddr}}" />
|
|
</template>
|
|
|
|
<template name="idump">
|
|
{{#each instructions}}
|
|
<div class="instruction">
|
|
<div class="change {{ischange}}">{{clnum}}</div>
|
|
{{#with program_instruction}}
|
|
<span class="name">{{name}}</span>
|
|
<span class="datainstruction {{isiaddr}}">{{hexaddress}}</span>
|
|
{{instruction}}
|
|
<span class="comment">{{comment}}</span>
|
|
{{/with}}
|
|
</div>
|
|
{{/each}}
|
|
</template>
|
|
|
|
<template name="regviewer">
|
|
{{#each regs}}
|
|
<div class="reg {{regactions}}">
|
|
{{name}}: <span class="{{datatype}}">{{hexvalue}}</span>
|
|
</div>
|
|
{{/each}}
|
|
</template>
|
|
|
|
<template name="datachanges">
|
|
{{#each memactions}}
|
|
<span class="datachanges {{typeclass}}">
|
|
<span class="{{addrtype}}">{{hexaddress}}</span>
|
|
<--
|
|
<span class="{{datatype}}">{{hexdata}}</span>
|
|
</span>
|
|
{{/each}}
|
|
</template>
|
|
|
|
<template name="memviewer">
|
|
<div id="hexdump"></div>
|
|
</template>
|
|
|