mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-04-26 04:17:35 +00:00
Fixes TOS 2.06 bus error
This commit is contained in:
@@ -45,9 +45,7 @@ clean:
|
||||
|
||||
release:
|
||||
make
|
||||
cd ./out; cp mist.rbf core.rbf ; cp ../../../tos/system.fnt .; cp ../readme.txt .; zip ../../../www/mist.zip core.rbf system.fnt readme.txt ; rm core.rbf system.fnt
|
||||
make clean
|
||||
cd ..; tar --exclude=.svn --exclude=old --exclude=old --exclude=*.orig --exclude=\*.bak --exclude=Makefile --exclude=greybox_tmp --exclude=out --exclude=db --exclude=incremental_db --exclude=\*~ -z -c -v -f ../www/mist_hdl.tgz mist-core-atarist
|
||||
cp ../../www/files.html files.tmp
|
||||
sed -e "s|Mist core updated on [0-9/]*.|Mist core updated on $(TODAY).|g" files.tmp > ../../www/files.html
|
||||
cd ./out; cp mist.rbf core.rbf ; cp ../../../../tos/system.fnt .; zip ../../../../www/mist.zip core.rbf system.fnt ; rm core.rbf system.fnt
|
||||
cp ../../../www/files.html files.tmp
|
||||
sed -e "s|Mist core updated on [0-9/]*.|Mist core updated on $(TODAY).|g" files.tmp > ../../../www/files.html
|
||||
rm files.tmp
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<sld_project_info>
|
||||
<project>
|
||||
<hash md5_digest_80b="f8d5b5a7688270eb3596"/>
|
||||
<hash md5_digest_80b="392c100a44e864bcb3c4"/>
|
||||
</project>
|
||||
<file_info/>
|
||||
<hub_info ir_width="8" node_count="1"/>
|
||||
|
||||
@@ -116,15 +116,15 @@ wire vreg_sel = io_sel && ({tg68_adr[15:7], 7'd0} == 16'h8200);
|
||||
wire [15:0] vreg_data_out;
|
||||
|
||||
// mfp 8 bit interface at $fffa00 - $fffa3f
|
||||
wire mfp_sel = io_sel && ({tg68_adr[15:6], 6'd0} == 16'hfa00);
|
||||
wire mfp_sel = io_sel && ({tg68_adr[15:8], 8'd0} == 16'hfa00);
|
||||
wire [7:0] mfp_data_out;
|
||||
|
||||
// acia 8 bit interface at $fffc00 - $fffc07
|
||||
wire acia_sel = io_sel && ({tg68_adr[15:3], 3'd0} == 16'hfc00);
|
||||
wire acia_sel = io_sel && ({tg68_adr[15:8], 8'd0} == 16'hfc00);
|
||||
wire [7:0] acia_data_out;
|
||||
|
||||
// psg 8 bit interface at $ff8800 - $ff8803
|
||||
wire psg_sel = io_sel && ({tg68_adr[15:2], 2'd0} == 16'h8800);
|
||||
wire psg_sel = io_sel && ({tg68_adr[15:8], 8'd0} == 16'h8800);
|
||||
wire [7:0] psg_data_out;
|
||||
|
||||
// dma 16 bit interface at $ff8600 - $ff860f
|
||||
|
||||
Reference in New Issue
Block a user