blob: 79b7516116af29cd89622d8c9151f0747383f1f9 [file] [log] [blame]
<head>
<link rel="import" href="observatory_element.html">
</head>
<polymer-element name="disassembly-entry" extends="observatory-element">
<template>
<div class="row">
<div class="col-md-2">{{ instruction.formattedTicks() }}</div>
<div class="col-md-2">{{ instruction.formattedAddress() }}</div>
<div class="col-md-4">
<code>{{ instruction.machine }} {{ instruction.human }}</code>
</div>
</div>
</template>
<script type="application/dart" src="disassembly_entry.dart"></script>
</polymer-element>