2016-12-16 01:21:51 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2016-12-18 20:59:31 +00:00
|
|
|
<title>8bitworkshop ~ Atari 2600</title>
|
2016-12-16 01:21:51 +00:00
|
|
|
<style type="text/css" media="screen">
|
|
|
|
body {
|
2017-01-06 14:49:07 +00:00
|
|
|
overflow: hidden !important;
|
2016-12-30 23:51:15 +00:00
|
|
|
font-size: 11px;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
|
|
|
.dbg_info {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
.gutter-offset {
|
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
.gutter-bytes {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
.gutter-clock {
|
|
|
|
width: 0.5em;
|
|
|
|
}
|
|
|
|
.gutter-info {
|
|
|
|
width: 1em;
|
|
|
|
}
|
2017-01-03 01:42:15 +00:00
|
|
|
.tooltipbox {
|
2016-12-16 01:21:51 +00:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border-bottom: 1px dotted black;
|
|
|
|
}
|
2017-01-03 01:42:15 +00:00
|
|
|
.tooltipbox .tooltiptext {
|
2016-12-16 01:21:51 +00:00
|
|
|
visibility: hidden;
|
|
|
|
width: 120px;
|
|
|
|
background-color: black;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
|
|
/* Position the tooltip */
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2017-01-03 01:42:15 +00:00
|
|
|
.tooltipbox:hover .tooltiptext {
|
2016-12-16 01:21:51 +00:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2017-01-06 14:49:07 +00:00
|
|
|
#controls_top {
|
2017-01-07 02:09:41 +00:00
|
|
|
position: absolute;
|
2017-01-06 14:49:07 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
height:3em;
|
2017-01-07 02:09:41 +00:00
|
|
|
width:100%;
|
|
|
|
background-color:#999;
|
|
|
|
}
|
|
|
|
#notebook {
|
|
|
|
position:absolute;
|
|
|
|
top:3em;
|
|
|
|
bottom:0;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
|
|
|
div.editor {
|
|
|
|
position:absolute;
|
|
|
|
left:0;
|
2017-01-07 02:09:41 +00:00
|
|
|
top:0;
|
2016-12-16 01:21:51 +00:00
|
|
|
bottom:0;
|
|
|
|
right:0;
|
|
|
|
width:50%;
|
2017-01-06 14:49:07 +00:00
|
|
|
height:95vh;
|
2016-12-16 01:21:51 +00:00
|
|
|
background-color:#999;
|
2016-12-30 23:51:15 +00:00
|
|
|
line-height:1.25;
|
|
|
|
font-size:12pt;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
|
|
|
div.emulator {
|
|
|
|
position:absolute;
|
|
|
|
left:50%;
|
|
|
|
top:0;
|
|
|
|
width:50%;
|
2017-01-06 14:49:07 +00:00
|
|
|
height:100vh;
|
2016-12-16 01:21:51 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
background-color: #666;
|
2017-01-03 01:42:15 +00:00
|
|
|
margin-top: 20px auto 0;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
|
|
|
div.mem_info {
|
2017-01-03 01:42:15 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 51%;
|
2016-12-16 01:21:51 +00:00
|
|
|
bottom: 10px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #66ff66;
|
|
|
|
white-space: pre;
|
|
|
|
padding: 20px;
|
|
|
|
z-index: 2;
|
2016-12-31 16:05:22 +00:00
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
font-size: 12pt;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
|
|
|
span.hilite {
|
|
|
|
color: #ff66ff;
|
|
|
|
}
|
|
|
|
div.has-errors {
|
|
|
|
background-color: #ff6666 !important;
|
|
|
|
}
|
|
|
|
div.menu_div {
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
div.booklink {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 6px;
|
|
|
|
background-color: #ffffff;
|
2017-01-04 21:07:59 +00:00
|
|
|
display:none;
|
2016-12-16 01:21:51 +00:00
|
|
|
}
|
2016-12-27 02:45:04 +00:00
|
|
|
div.twitbtn {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
2016-12-16 01:21:51 +00:00
|
|
|
a {
|
|
|
|
color:#333399;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-12-30 23:51:15 +00:00
|
|
|
a.dropdown-toggle {
|
|
|
|
color:#66ee66;
|
|
|
|
padding:3px;
|
|
|
|
}
|
2017-01-04 21:07:59 +00:00
|
|
|
// http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing
|
|
|
|
.dropdown-submenu {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
.dropdown-submenu>.dropdown-menu {
|
|
|
|
top:0;
|
|
|
|
left:100%;
|
|
|
|
margin-top:-6px;
|
|
|
|
margin-left:-1px;
|
|
|
|
-webkit-border-radius:0 6px 6px 6px;
|
|
|
|
-moz-border-radius:0 6px 6px 6px;
|
|
|
|
border-radius:0 6px 6px 6px;
|
|
|
|
}
|
|
|
|
.dropdown-submenu:hover>.dropdown-menu {
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
.dropdown-submenu>a:after {
|
|
|
|
display:block;
|
|
|
|
content:" ";
|
|
|
|
float:right;
|
|
|
|
width:0;
|
|
|
|
height:0;
|
|
|
|
border-color:transparent;
|
|
|
|
border-style:solid;
|
|
|
|
border-width:5px 0 5px 5px;
|
|
|
|
border-left-color:#cccccc;
|
|
|
|
margin-top:5px;
|
|
|
|
margin-right:-10px;
|
|
|
|
}
|
|
|
|
.dropdown-submenu:hover>a:after {
|
|
|
|
border-left-color:#ffffff;
|
|
|
|
}
|
|
|
|
.dropdown-submenu.pull-left {
|
|
|
|
float:none;
|
|
|
|
}
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
|
|
|
left:-100%;
|
|
|
|
margin-left:10px;
|
|
|
|
-webkit-border-radius:6px 0 6px 6px;
|
|
|
|
-moz-border-radius:6px 0 6px 6px;
|
|
|
|
border-radius:6px 0 6px 6px;
|
|
|
|
}
|
2016-12-16 01:21:51 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2017-01-07 02:09:41 +00:00
|
|
|
<div id="controls_top">
|
|
|
|
<span class="dropdown">
|
|
|
|
<a class="btn btn-secondary dropdown-toggle" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
☰ <span class="caret"></span>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
|
|
<li><a class="dropdown-item" href="#" id="item_new_file">New File...</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" id="item_share_file">Share File...</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" id="item_reset_file">Reset to Original...</a></li>
|
|
|
|
<li class="dropdown dropdown-submenu">
|
|
|
|
<a tabindex="-1" href="#">Platform</a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li><a class="dropdown-item" href="?platform=vcs" id="item_platform_vcs">Atari VCS</a></li>
|
|
|
|
<li><a class="dropdown-item" href="?platform=apple2" id="item_platform_apple2">Apple ][</a></li>
|
|
|
|
<li><a class="dropdown-item" href="?platform=atarivec" id="item_platform_atarivec">Asteroids</a></li>
|
|
|
|
<li><a class="dropdown-item" href="?platform=exidy" id="item_platform_exidy">Exidy</a></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</span>
|
|
|
|
<select id="preset_select" name="">
|
|
|
|
</select>
|
|
|
|
<span id="debug_bar">
|
|
|
|
<button id="dbg_pause" type="button" title="Pause"><img src="images/pause.png"></button>
|
|
|
|
<button id="dbg_go" type="button" title="Run"><img src="images/play.png"></button>
|
|
|
|
<button id="dbg_step" type="submit" title="Step"><img src="images/singlestep.png"></button>
|
|
|
|
<button id="dbg_toline" type="submit" title="Run To Line"><img src="images/runtoline.png"></button>
|
|
|
|
<button id="dbg_reset" type="submit" title="Reset and Run To Line"><img src="images/resetandrun.png"></button>
|
2017-01-06 16:57:28 +00:00
|
|
|
<!-- <button id="dbg_stepout" type="submit" title="Step Out of Subroutine">O</button>-->
|
2017-01-07 02:09:41 +00:00
|
|
|
<button id="dbg_timing" type="submit" title="See Timing" style="display:none"><img src="images/timing.png"></button>
|
|
|
|
<button id="dbg_disasm" type="submit" title="Toggle Disassembly">#</button>
|
|
|
|
</span>
|
|
|
|
<span class="dbg_info" id="dbg_info"></span>
|
|
|
|
</div>
|
|
|
|
<div id="notebook">
|
2017-01-06 14:49:07 +00:00
|
|
|
<div id="editor_window">
|
|
|
|
<div id="disassembly" class="editor">
|
|
|
|
</div>
|
|
|
|
<div id="editor" class="editor">
|
2016-12-16 01:21:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-03 01:42:15 +00:00
|
|
|
<div class="emulator" id="emulator">
|
2016-12-16 01:21:51 +00:00
|
|
|
<div id="javatari-screen" style="margin: 0 auto; box-shadow: 2px 2px 10px rgb(60, 60, 60);"></div>
|
|
|
|
<div id="javatari-console-panel" style="margin: 0 auto; box-shadow: 2px 2px 10px rgb(60, 60, 60);"></div>
|
|
|
|
<div id="mem_info" class="mem_info" style="display:none">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-27 02:45:04 +00:00
|
|
|
<div class="twitbtn">
|
|
|
|
<a href="https://twitter.com/8bitworkshop" class="twitter-follow-button" data-show-count="false">Follow @8bitworkshop</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
|
|
</div>
|
2017-01-04 21:07:59 +00:00
|
|
|
<div class="booklink" id="booklink_vcs">
|
2016-12-16 01:21:51 +00:00
|
|
|
<!--
|
|
|
|
<iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0"
|
|
|
|
src="http://ws-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ac&ref=tf_til&ad_type=product_link&tracking_id=pzp-20&marketplace=amazon®ion=US&placement=B01N4DSRIZ&asins=B01N4DSRIZ&linkId=67b114b83ce0b13ceaf715ee86833626&show_border=true&link_opens_in_new_window=false&price_color=333333&title_color=0066c0&bg_color=7d6d6d">
|
|
|
|
</iframe>
|
|
|
|
-->
|
2016-12-26 17:36:37 +00:00
|
|
|
<a target="_new" href="https://www.amazon.com/gp/product/1541021304/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&tag=pzp-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=B01N4DSRIZ&linkId=04d39e274c06e6c93b93d20a9a977111">
|
2016-12-17 15:13:53 +00:00
|
|
|
<img src="https://images-na.ssl-images-amazon.com/images/I/5153Bd8oWeL._AC_AC_SR98,95_.jpg" style="float:right"/></a>
|
2016-12-16 01:21:51 +00:00
|
|
|
Want to learn more?<br>
|
|
|
|
Get the new book<br>
|
2016-12-26 17:36:37 +00:00
|
|
|
<a target="_new" href="https://www.amazon.com/gp/product/1541021304/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&tag=pzp-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=B01N4DSRIZ&linkId=04d39e274c06e6c93b93d20a9a977111">
|
2016-12-16 01:21:51 +00:00
|
|
|
Making Games For The Atari 2600</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="jquery/jquery-2.2.3.min.js"></script>
|
|
|
|
|
2016-12-30 23:51:15 +00:00
|
|
|
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
|
|
|
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
2017-01-04 21:07:59 +00:00
|
|
|
<link rel="stylesheet" href="bootstrap/css/bootstrap-tour.min.css">
|
2016-12-30 23:51:15 +00:00
|
|
|
<script src="bootstrap/js/bootstrap-tour.min.js"></script>
|
2016-12-18 20:59:31 +00:00
|
|
|
|
2016-12-16 01:21:51 +00:00
|
|
|
<script src="codemirror/lib/codemirror.js"></script>
|
|
|
|
<script src="codemirror/mode/6502/6502.js"></script>
|
|
|
|
<link rel="stylesheet" href="css/codemirror.css">
|
|
|
|
<link rel="stylesheet" href="codemirror/theme/mbo.css">
|
|
|
|
<script src="codemirror/addon/search/search.js"></script>
|
|
|
|
<script src="codemirror/addon/search/searchcursor.js"></script>
|
|
|
|
<script src="codemirror/addon/search/jumpToLine.js"></script>
|
|
|
|
<script src="codemirror/addon/dialog/dialog.js"></script>
|
|
|
|
<link rel="stylesheet" href="codemirror/addon/dialog/dialog.css">
|
|
|
|
|
|
|
|
<script src="javatari.js/release/javatari/javatari.js"></script>
|
2017-01-03 01:42:15 +00:00
|
|
|
<script src="src/emu.js"></script>
|
2017-01-04 21:07:59 +00:00
|
|
|
<script src="src/util.js"></script>
|
2017-01-06 14:49:07 +00:00
|
|
|
<script src="src/disasm.js"></script>
|
2016-12-31 16:05:22 +00:00
|
|
|
<script src="src/platform/vcs.js"></script>
|
2017-01-03 01:42:15 +00:00
|
|
|
<script src="src/platform/apple2.js"></script>
|
|
|
|
<script src="src/platform/atarivec.js"></script>
|
2017-01-07 02:09:41 +00:00
|
|
|
<script src="src/platform/exidy.js"></script>
|
2016-12-16 01:21:51 +00:00
|
|
|
<script src="src/ui.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', 'UA-54497476-9', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
</html>
|