changed link(s)

This commit is contained in:
Steven Hugg 2017-12-30 11:48:30 -06:00
parent 6d7a4d3f09
commit eb3a1164fa
5 changed files with 16 additions and 3630 deletions

View File

@ -90,17 +90,21 @@ ga('send', 'pageview');
</span>
<span class="dropdown" style="float:right">
<a class="btn btn-secondary dropdown-toggle" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i>Want the book?</i> <span class="caret"></span>
<i>Want a book?</i> <span class="caret"></span>
</a>
<ul class="dropdown-menu pull-right" aria-labelledby="dropdownMenuButton">
<li>
<a class="dropdown-item" target="_book_a2600" 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">
<a class="dropdown-item dropdown-link" target="_book_a2600" 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">
<img src="images/book_a2600.png"/>
&nbsp;&nbsp;Making Games For The Atari 2600
&nbsp;&nbsp;<b>Making Games For The Atari 2600</b> (Print/Kindle Editions)
</a>
<a class="dropdown-item" target="_book_arcade" href="https://www.amazon.com/Making-8-bit-Arcade-Games-C/dp/1545484759">
<a class="dropdown-item dropdown-link" target="_book_arcade" href="https://www.amazon.com/gp/product/1545484759/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1545484759&linkCode=as2&tag=pzp-20&linkId=b27709c022d2ebe639e90316d9f4fd5b">
<img src="images/book_arcade.png"/>
&nbsp;&nbsp;Making 8-bit Arcade Games in C
&nbsp;&nbsp;<b>Making 8-bit Arcade Games in C</b> (Print Edition)
</a>
<a class="dropdown-item dropdown-link" target="_book_arcade_pdf" href="https://gumroad.com/l/8bitworkshoparcadebook">
<img src="images/book_arcade.png"/>
&nbsp;&nbsp;<b>Making 8-bit Arcade Games in C</b> (Downloadable PDF)
</a>
</li>
</ul>

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
"use strict";
var APPLE2_PRESETS = [
];

View File

@ -437,7 +437,7 @@ var VerilogPlatform = function(mainElement, options) {
gen = new mod(base);
gen.__proto__ = base;
current_output = output;
ports_and_signals = current_output.ports.concat(current_output.signals);
ports_and_signals = current_output.ports; // TODO: current_output.ports.concat(current_output.signals);
trace_buffer = new Uint32Array(0x10000);
trace_index = 0;
this.poweron();

View File

@ -80,6 +80,11 @@ var PLATFORM_PARAMS = {
cfgfile: 'neslib.cfg',
libargs: ['neslib.lib', 'nes.lib'],
},
'apple2': {
define: '__APPLE2__',
cfgfile: 'apple2.cfg',
libargs: ['apple2.lib'],
},
'verilog': {
},
};