mirror of https://github.com/zxdos/zxuno.git
Oric core: Some cleanup of the build scripts
This commit is contained in:
parent
7554bc6430
commit
f9f8ba9a89
|
@ -1,8 +1,6 @@
|
|||
|
||||
all:
|
||||
time -p ./makemy.sh |tee out
|
||||
my:
|
||||
time -p ./makenew.sh |tee out
|
||||
time -p ./make.sh |tee out
|
||||
clean:
|
||||
rm -rf COREn.ZX1 _impact.cmd _impact.log makemy.sh~ _ngo oric.bgn oric.bit oric_bitgen.xwbt \
|
||||
oric.bld oric.drc ORIC.lso oric_map.map oric_map.mrp oric_map.ncd oric_map.ngm ORIC_map.xrpt \
|
||||
|
@ -10,5 +8,3 @@ clean:
|
|||
oric_pad.txt oric.par ORIC_par.xrpt oric.pcf oric.ptwx oric_summary.xml oric.syr oric.twr \
|
||||
oric.twx oric.unroutes oric_usage.xml oric.v4.bit oric.xpi ORIC_xst.xrpt out out.my par_usage_statistics.html \
|
||||
projnav.tmp usage_statistics_webtalk.html webtalk.log xlnx_auto_0_xdb _xmsgs xst
|
||||
last:
|
||||
time -p ./makemylast.sh |tee out
|
||||
|
|
|
@ -4,5 +4,6 @@ SET ruta_ucf=..\source\oric
|
|||
SET ruta_bat=..\..\
|
||||
call %ruta_bat%genxst.bat
|
||||
rem call %ruta_bat%generar.bat v2_v3 ZZ3
|
||||
call %ruta_bat%generar.bat v4 ZX1
|
||||
rem call %ruta_bat%generar.bat v4 ZX1
|
||||
call %ruta_bat%generar.bat v4_my ZX1
|
||||
rem call %ruta_bat%generar.bat Ap ZZA
|
||||
|
|
|
@ -5,5 +5,5 @@ export ruta_ucf=../source/oric
|
|||
export ruta_bat=../../
|
||||
"$ruta_bat"genxst.sh
|
||||
#"$ruta_bat"generar.sh v2_v3 ZZ3
|
||||
"$ruta_bat"generar.sh v4 ZX1
|
||||
"$ruta_bat"generar.sh v4_my ZX1
|
||||
#"$ruta_bat"generar.sh Ap ZZA
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/bash
|
||||
export machine=oric
|
||||
export speed=3
|
||||
export ruta_ucf=../source/oric
|
||||
export ruta_bat=../../
|
||||
"$ruta_bat"genxst.sh
|
||||
#"$ruta_bat"generar.sh v2_v3 ZZ3
|
||||
"$ruta_bat"generar.sh v4_my ZX1
|
||||
#"$ruta_bat"generar.sh Ap ZZA
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
map -intstyle ise -w -ol high -mt 2 -p xc6slx9-tqg144-"$speed" -logic_opt off -t 1 -xt 0 -register_duplication off -r 4 -global_opt off -ir off -pr off -lc off -power off -o "$machine"_map.ncd "$machine".ngd "$machine".pcf
|
||||
par -intstyle ise -w -ol high -mt 4 "$machine"_map.ncd "$machine".ncd "$machine".pcf
|
||||
trce -intstyle ise -v 3 -s "$speed" -n 3 -fastpaths -xml "$machine".twx "$machine".ncd -o "$machine".twr "$machine".pcf
|
||||
bitgen -intstyle ise -f "$machine".ut "$machine".ncd
|
||||
bit2bin "$machine".bit COREn."$2"
|
||||
cp "$machine".bit "$machine"."$1".bit
|
Loading…
Reference in New Issue