mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2025-04-11 23:37:35 +00:00
Merge remote-tracking branch 'origin/dev-0.7c' into dev
This commit is contained in:
commit
f94cf51fcd
38
cpld/CNT.v
38
cpld/CNT.v
@ -13,21 +13,22 @@ module CNT(
|
||||
input nAS,
|
||||
input ASrf,
|
||||
input BACT,
|
||||
input IACKCS,
|
||||
input IACK0CS,
|
||||
input IACK1CS,
|
||||
input VIACS,
|
||||
input IWMCS,
|
||||
input SCCCS,
|
||||
input SCSICS,
|
||||
input SndCSWR,
|
||||
/* QoS settings inputs */
|
||||
input SlowIACK,
|
||||
/*input SlowIACK,
|
||||
input SlowVIA,
|
||||
input SlowIWM,
|
||||
input SlowSCC,
|
||||
input SlowSCSI,
|
||||
input SlowSnd,
|
||||
input SlowClockGate,
|
||||
input [3:0] SlowInterval,
|
||||
input [3:0] SlowInterval, */
|
||||
/* QoS outputs */
|
||||
output reg QoSEN,
|
||||
output reg MCKE);
|
||||
@ -71,10 +72,12 @@ module CNT(
|
||||
always @(posedge CLK) TimerTick <= EFall && TimerTC;
|
||||
|
||||
/* QoS select latches */
|
||||
reg IACKCSr, VIACSr, IWMCSr, SCCCSr, SCSICSr, SndCSWRr;
|
||||
reg IACK0CSr, IACK1CSr;
|
||||
reg VIACSr, IWMCSr, SCCCSr, SCSICSr, SndCSWRr;
|
||||
reg nRESr;
|
||||
always @(posedge CLK) nRESr <= nRESin;
|
||||
always @(posedge CLK) IACKCSr <= BACT && IACKCS;
|
||||
always @(posedge CLK) IACK0CSr <= BACT && IACK0CS;
|
||||
always @(posedge CLK) IACK1CSr <= BACT && IACK1CS;
|
||||
always @(posedge CLK) VIACSr <= BACT && VIACS;
|
||||
always @(posedge CLK) IWMCSr <= BACT && IWMCS;
|
||||
always @(posedge CLK) SCCCSr <= BACT && SCCCS;
|
||||
@ -88,25 +91,34 @@ module CNT(
|
||||
* QoS enable period is 196.588 us - 210.630 us */
|
||||
reg [3:0] QS;
|
||||
always @(posedge CLK) begin
|
||||
if (!nRESr) QS <= 4'h2;
|
||||
//else if (SCSICSr) QS <= 0;
|
||||
else if (IACKCSr) QS <= 4'hF;
|
||||
if (!nRESr) QS <= 2;
|
||||
else if (IACK0CSr) QS <= 15;
|
||||
else if (VIACSr) QS[1] <= 1;
|
||||
else if (IWMCSr) QS[1] <= 1;
|
||||
else if (SCCCSr) QS[1] <= 1;
|
||||
else if (SndCSWRr) QS <= 4'hF;
|
||||
else if (SndCSWRr) QS <= 15;
|
||||
else if (QS==0) QS <= 0;
|
||||
else if (TimerTick) QS <= QS-1;
|
||||
end
|
||||
|
||||
/*reg [1:0] QFS;
|
||||
always @(posedge CLK) begin
|
||||
if (!nRESr) QFS <= 0;
|
||||
else if (IACK1CSr) QFS <= 2;
|
||||
else if (IACK0CSr) QFS <= 0;
|
||||
else if (VIACSr) QFS <= 0;
|
||||
else if (SCCCSr) QFS <= 2;
|
||||
else if (QFS==0) QFS <= 0;
|
||||
else if (TimerTick) QFS <= QFS-1;
|
||||
end*/
|
||||
|
||||
reg ClockGateEN;
|
||||
always @(posedge CLK) begin
|
||||
if (!nRESr || IACKCSr || VIACSr || IWMCSr || SCCCSr || SCSICSr) ClockGateEN <= 0;
|
||||
else if (SndCSWRr) ClockGateEN <= 1;
|
||||
if (!nRESr || IACK1CSr || VIACSr || IWMCSr || SCCCSr || SCSICSr) ClockGateEN <= 0;
|
||||
else if (IACK0CSr || SndCSWRr) ClockGateEN <= 1;
|
||||
end
|
||||
|
||||
/* QoS enable control */
|
||||
always @(posedge CLK) if (!BACT) QoSEN <= QS!=0;
|
||||
always @(posedge CLK) if (!BACT) QoSEN <= QS!=0;// && QFS==0;
|
||||
|
||||
/* MC68k clock gating during QoS */
|
||||
always @(negedge CLK, negedge nAS) begin
|
||||
|
@ -1,6 +1,6 @@
|
||||
module CS(
|
||||
/* MC68HC000 interface */
|
||||
input [23:08] A, input CLK, input nRES, input nWE,
|
||||
input [23:1] A, input CLK, input nRES, input nWE,
|
||||
/* AS cycle detection */
|
||||
input BACT,
|
||||
/* QoS enable input */
|
||||
@ -9,7 +9,8 @@ module CS(
|
||||
output IOCS, output IORealCS, output IOPWCS, output IACS,
|
||||
output ROMCS, output ROMCS4X,
|
||||
output RAMCS, output RAMCS0X,
|
||||
output IACKCS, output VIACS, output IWMCS,
|
||||
output IACKCS, output IACK0CS, output IACK1CS,
|
||||
output VIACS, output IWMCS,
|
||||
output SCCCS, output SCSICS, output SndCSWR,
|
||||
output SetCSWR);
|
||||
|
||||
@ -22,6 +23,8 @@ module CS(
|
||||
|
||||
/* I/O select signals */
|
||||
assign IACKCS = A[23:20]==4'hF;
|
||||
assign IACK0CS = IACKCS && A[1];
|
||||
assign IACK1CS = IACKCS && A[2];
|
||||
assign VIACS = A[23:20]==4'hE;
|
||||
assign IWMCS = A[23:20]==4'hD;
|
||||
assign SCCCS = A[23:20]==4'hB || A[23:20]==4'h9;
|
||||
@ -69,5 +72,5 @@ module CS(
|
||||
A[23:20]==4'h6 || // empty (expansion RAM)
|
||||
A[23:20]==4'h5; // SCSI
|
||||
assign IOCS = IORealCS || VidRAMCSWR || QoSEN;
|
||||
assign IOPWCS = VidRAMCSWR64k && !QoSEN; // Posted write to video RAM only when QoS disabled
|
||||
assign IOPWCS = IACKCS || (VidRAMCSWR64k && !QoSEN); // Posted write to video RAM only when QoS disabled
|
||||
endmodule
|
||||
|
@ -22,11 +22,11 @@ module FSB(
|
||||
(ROMCS && !QoSEN) || (IONPReady);
|
||||
always @(posedge FCLK, posedge nAS) begin
|
||||
if (nAS) nDTACK <= 1;
|
||||
else nDTACK <= !(Ready && !IACKCS);
|
||||
else if (!IACKCS && Ready) nDTACK <= 0;
|
||||
end
|
||||
always @(posedge FCLK, posedge nAS) begin
|
||||
if (nAS) nVPA <= 1;
|
||||
else nVPA <= !(Ready && IACKCS);
|
||||
else if (IACKCS && IOPWReady) nVPA <= 0;
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
@ -70,11 +70,12 @@ module WarpSE(
|
||||
wire ROMCS, ROMCS4X;
|
||||
wire RAMCS, RAMCS0X;
|
||||
wire QoSEN;
|
||||
wire IACKCS, VIACS, IWMCS, SCCCS, SCSICS, SndCSWR;
|
||||
wire SetCSWR;
|
||||
wire IACKCS, IACK0CS, IACK1CS;
|
||||
wire VIACS, IWMCS, SCCCS, SCSICS, SndCSWR;
|
||||
//wire SetCSWR;
|
||||
CS cs(
|
||||
/* MC68HC000 interface */
|
||||
.A(A_FSB[23:08]),
|
||||
.A(A_FSB[23:1]),
|
||||
.CLK(FCLK),
|
||||
.nRES(nRESin),
|
||||
.nWE(nWE_FSB),
|
||||
@ -92,13 +93,15 @@ module WarpSE(
|
||||
.RAMCS0X(RAMCS0X),
|
||||
/* Motherboard I/O device select outputs */
|
||||
.IACKCS(IACKCS),
|
||||
.IACK0CS(IACK0CS),
|
||||
.IACK1CS(IACK1CS),
|
||||
.VIACS(VIACS),
|
||||
.IWMCS(IWMCS),
|
||||
.SCCCS(SCCCS),
|
||||
.SCSICS(SCSICS),
|
||||
.SndCSWR(SndCSWR),
|
||||
.SndCSWR(SndCSWR)/*,*/
|
||||
/* Settings register select output */
|
||||
.SetCSWR(SetCSWR));
|
||||
/*.SetCSWR(SetCSWR)*/);
|
||||
|
||||
wire RAMReady;
|
||||
RAM ram(
|
||||
@ -207,8 +210,8 @@ module WarpSE(
|
||||
.IOACT(IOACT),
|
||||
.IODONE(IODONE));
|
||||
|
||||
wire SlowIACK, SlowVIA, SlowIWM, SlowSCC, SlowSCSI, SlowSnd, SlowClockGate;
|
||||
wire [3:0] SlowInterval;
|
||||
//wire SlowIACK, SlowVIA, SlowIWM, SlowSCC, SlowSCSI, SlowSnd, SlowClockGate;
|
||||
//wire [3:0] SlowInterval;
|
||||
/*SET set(
|
||||
.CLK(FCLK),
|
||||
.nPOR(nPOR),
|
||||
@ -247,21 +250,22 @@ module WarpSE(
|
||||
.nAS(nAS_FSB),
|
||||
.ASrf(ASrf),
|
||||
.BACT(BACT),
|
||||
.IACKCS(IACKCS),
|
||||
.IACK0CS(IACK0CS),
|
||||
.IACK1CS(IACK1CS),
|
||||
.VIACS(VIACS),
|
||||
.IWMCS(IWMCS),
|
||||
.SCCCS(SCCCS),
|
||||
.SCSICS(SCSICS),
|
||||
.SndCSWR(SndCSWR),
|
||||
/* QoS settings inputs */
|
||||
.SlowIACK(SlowIACK),
|
||||
/*.SlowIACK(SlowIACK),
|
||||
.SlowVIA(SlowVIA),
|
||||
.SlowIWM(SlowIWM),
|
||||
.SlowSCC(SlowSCC),
|
||||
.SlowSCSI(SlowSCSI),
|
||||
.SlowSnd(SlowSnd),
|
||||
.SlowClockGate(SlowClockGate),
|
||||
.SlowInterval(SlowInterval),
|
||||
.SlowInterval(SlowInterval),*/
|
||||
/* QoS outputs */
|
||||
.QoSEN(QoSEN),
|
||||
.MCKE(MCKE));
|
||||
|
5163
cpld/XC95144XL/WarpSE-0.7c-fast.svf
Normal file
5163
cpld/XC95144XL/WarpSE-0.7c-fast.svf
Normal file
File diff suppressed because it is too large
Load Diff
5163
cpld/XC95144XL/WarpSE-0.7c-slow.svf
Normal file
5163
cpld/XC95144XL/WarpSE-0.7c-slow.svf
Normal file
File diff suppressed because it is too large
Load Diff
5163
cpld/XC95144XL/WarpSE-0.7c.svf
Normal file
5163
cpld/XC95144XL/WarpSE-0.7c.svf
Normal file
File diff suppressed because it is too large
Load Diff
@ -30,7 +30,7 @@ NGDBUILD Design Results Summary:
|
||||
Number of errors: 0
|
||||
Number of warnings: 0
|
||||
|
||||
Total memory usage is 154880 kilobytes
|
||||
Total memory usage is 155072 kilobytes
|
||||
|
||||
Writing NGD file "WarpSE.ngd" ...
|
||||
Total REAL time to NGDBUILD completion: 3 sec
|
||||
|
@ -1725,3 +1725,94 @@ XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
xst -intstyle ise -ifn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/WarpSE.syr"
|
||||
ngdbuild -intstyle ise -dd _ngo -uc C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/WarpSE-XC95144XL.ucf -p xc95144xl-TQ100-10 WarpSE.ngc WarpSE.ngd
|
||||
cpldfit -intstyle ise -p xc95144xl-10-TQ100 -ofmt vhdl -optimize speed -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 25 -unused float -power std -terminate keeper WarpSE.ngd
|
||||
XSLTProcess WarpSE_build.xml
|
||||
tsim -intstyle ise WarpSE WarpSE.nga
|
||||
taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_report.htm
|
||||
hprep6 -s IEEE1149 -n WarpSE -i WarpSE
|
||||
|
@ -70,7 +70,7 @@
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881421" xil_pn:in_ck="5474524715461797957" xil_pn:name="TRANEXT_xstsynthesize_xc9500xl" xil_pn:prop_ck="-827049739915084467" xil_pn:start_ts="1728881414">
|
||||
<transform xil_pn:end_ts="1728976815" xil_pn:in_ck="5474524715461797957" xil_pn:name="TRANEXT_xstsynthesize_xc9500xl" xil_pn:prop_ck="-827049739915084467" xil_pn:start_ts="1728976808">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="WarningsGenerated"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
@ -90,7 +90,7 @@
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881427" xil_pn:in_ck="814020912342028692" xil_pn:name="TRAN_ngdbuild" xil_pn:prop_ck="1893441463969615248" xil_pn:start_ts="1728881421">
|
||||
<transform xil_pn:end_ts="1728976820" xil_pn:in_ck="814020912342028692" xil_pn:name="TRAN_ngdbuild" xil_pn:prop_ck="1893441463969615248" xil_pn:start_ts="1728976815">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<outfile xil_pn:name="WarpSE.bld"/>
|
||||
@ -99,7 +99,7 @@
|
||||
<outfile xil_pn:name="_ngo"/>
|
||||
<outfile xil_pn:name="_xmsgs/ngdbuild.xmsgs"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881446" xil_pn:in_ck="4179227257693753" xil_pn:name="TRANEXT_vm6File_xc9500xl" xil_pn:prop_ck="3294015560432670715" xil_pn:start_ts="1728881427">
|
||||
<transform xil_pn:end_ts="1728976839" xil_pn:in_ck="4179227257693753" xil_pn:name="TRANEXT_vm6File_xc9500xl" xil_pn:prop_ck="3294015560432670715" xil_pn:start_ts="1728976820">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="WarningsGenerated"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
@ -119,28 +119,28 @@
|
||||
<outfile xil_pn:name="WarpSE_html"/>
|
||||
<outfile xil_pn:name="WarpSE_pad.csv"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881533" xil_pn:in_ck="4179227257702617" xil_pn:name="TRANEXT_crtProg_xc9500" xil_pn:prop_ck="-6294026017969277533" xil_pn:start_ts="1728881531">
|
||||
<transform xil_pn:end_ts="1728976877" xil_pn:in_ck="4179227257702617" xil_pn:name="TRANEXT_crtProg_xc9500" xil_pn:prop_ck="-6294026017969277533" xil_pn:start_ts="1728976875">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<outfile xil_pn:name="WarpSE.jed"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881546" xil_pn:in_ck="4179227257689331" xil_pn:name="TRAN_impactProgrammingTool_CPLD" xil_pn:prop_ck="-207801193714804843" xil_pn:start_ts="1728881546">
|
||||
<transform xil_pn:end_ts="1728976967" xil_pn:in_ck="4179227257689331" xil_pn:name="TRAN_impactProgrammingTool_CPLD" xil_pn:prop_ck="-207801193714804843" xil_pn:start_ts="1728976967">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<outfile xil_pn:name="_impactbatch.log"/>
|
||||
<outfile xil_pn:name="ise_impact.cmd"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881285" xil_pn:in_ck="4179227257689331" xil_pn:name="TRAN_configureTargetDevice_CPLD" xil_pn:prop_ck="-742897827381199779" xil_pn:start_ts="1728881285">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<status xil_pn:value="OutOfDateForInputs"/>
|
||||
<status xil_pn:value="OutOfDateForOutputs"/>
|
||||
<status xil_pn:value="InputChanged"/>
|
||||
<status xil_pn:value="OutputChanged"/>
|
||||
<outfile xil_pn:name="_impactbatch.log"/>
|
||||
<outfile xil_pn:name="ise_impact.cmd"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728881448" xil_pn:in_ck="4179227257702617" xil_pn:name="TRAN_timRpt" xil_pn:prop_ck="111903974446" xil_pn:start_ts="1728881446">
|
||||
<transform xil_pn:end_ts="1728976964" xil_pn:in_ck="4179227257689331" xil_pn:name="TRAN_configureTargetDevice_CPLD" xil_pn:prop_ck="-742897827381199779" xil_pn:start_ts="1728976964">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<status xil_pn:value="OutOfDateForOutputs"/>
|
||||
<status xil_pn:value="OutputChanged"/>
|
||||
<outfile xil_pn:name="_impactbatch.log"/>
|
||||
<outfile xil_pn:name="ise_impact.cmd"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1728976841" xil_pn:in_ck="4179227257702617" xil_pn:name="TRAN_timRpt" xil_pn:prop_ck="111903974446" xil_pn:start_ts="1728976839">
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
</transform>
|
||||
|
@ -79,41 +79,42 @@ nVPA_FSB S:PIN93
|
||||
;The remaining section of the .gyd file is for documentation purposes only.
|
||||
;It shows where your internal equations were placed in the last successful fit.
|
||||
|
||||
PARTITION FB1_1 iobm/IOS_FSM_FFd1 iobm/IOREQr iobm/Er iobm/C8Mr
|
||||
cnt/nRESr cnt/TimerTick cnt/Er<1> cnt/Er<0>
|
||||
cnt/C8Mr<0> ram/RefDone ram/RASrf cnt/Timer<2>
|
||||
cnt/Timer<0> cnt/LTimer<7> RefUrg RefReq
|
||||
PARTITION FB1_1 cnt/TimerTick cnt/Er<1> cnt/C8Mr<3> cnt/C8Mr<2>
|
||||
cnt/C8Mr<0> ram/RefDone iobs/IOU1 iobs/IOL1
|
||||
cnt/Timer<2> cnt/Timer<0> cnt/LTimer<7> cnt/LTimer<4>
|
||||
cnt/LTimer<3> cnt/LTimer<2> RefUrg RefReq
|
||||
cnt/Timer<3> cnt/Timer<1>
|
||||
PARTITION FB2_12 iobs/IODONErf iobs/IODONEr<1> iobs/IODONEr<0> iobs/IOACTr
|
||||
iobm/VPAr iobm/IOS_FSM_FFd5 iobm/IOS_FSM_FFd4
|
||||
PARTITION FB3_1 cnt/LTimer<0> ASrf ALE0S cnt/LTimer<6>
|
||||
cnt/LTimer<5> cnt/LTimer<4> cnt/LTimer<3> cnt/LTimer<2>
|
||||
nDTACK_FSB_OBUF cnt/LTimer<1> cnt/ClockGateEN QoSEN
|
||||
IORW cnt/QS<3> cnt/QS<1> cnt/QS<2>
|
||||
nROMWE_OBUF cnt/QS<0>
|
||||
PARTITION FB4_1 cnt/LTimerTick nAoutOE_OBUF cnt/C8Mr<3> cnt/C8Mr<2>
|
||||
nDoutOE_OBUF nDinOE_OBUF cnt/C8Mr<1> N0
|
||||
nRESout nBR_IOBout nVPA_FSB_OBUF cnt/LTimer<9>
|
||||
cnt/LTimer<8> cnt/LTimer<11> cnt/LTimer<10> cnt/IS<1>
|
||||
cnt/nPOR cnt/IS<0>
|
||||
PARTITION FB5_1 IOREQ nROMOE_OBUF cnt/IACKCSr ram/RASEL
|
||||
nCAS_OBUF nOE_OBUF cs/Overlay iobs/Load1
|
||||
RA_4_OBUF cnt/SndCSWRr RA_11_OBUF RA_5_OBUF
|
||||
iobs/Sent RA_2_OBUF RA_6_OBUF iobs/IORW1
|
||||
EXP10_ iobs/TS_FSM_FFd2
|
||||
PARTITION FB6_1 iobs/Clear1 nVMA_IOBout iobs/TS_FSM_FFd1 iobs/IOU1
|
||||
iobs/IOL1 iobm/ES<2> iobm/ES<0> IOU0
|
||||
PARTITION FB2_8 iobs/IODONEr<1> iobs/IODONEr<0> iobm/VPAr iobm/IOS_FSM_FFd5
|
||||
iobm/IOS_FSM_FFd4 iobm/IOS_FSM_FFd1 iobm/IOREQr iobm/Er
|
||||
iobm/C8Mr cnt/nRESr cnt/Er<0>
|
||||
PARTITION FB3_1 iobs/IODONErf iobs/IOACTr iobs/Clear1 cnt/LTimerTick
|
||||
cnt/LTimer<0> BACTr ASrf ALE0S
|
||||
nDTACK_FSB_OBUF iobs/TS_FSM_FFd1 cnt/LTimer<9> cnt/LTimer<8>
|
||||
cnt/LTimer<6> cnt/LTimer<5> cnt/LTimer<11> cnt/LTimer<10>
|
||||
nROMWE_OBUF IORW
|
||||
PARTITION FB4_1 cnt/C8Mr<1> nAoutOE_OBUF nRESout nBR_IOBout
|
||||
nDoutOE_OBUF nDinOE_OBUF cnt/LTimer<1> N0
|
||||
cnt/IS<1> QoSEN nVPA_FSB_OBUF cnt/nPOR
|
||||
cnt/IS<0> cnt/ClockGateEN cnt/QS<3> cnt/QS<1>
|
||||
cnt/QS<2> cnt/QS<0>
|
||||
PARTITION FB5_1 EXP10_ nROMOE_OBUF IOREQ EXP11_
|
||||
nCAS_OBUF nOE_OBUF iobs/IORW1 EXP12_
|
||||
RA_4_OBUF iobs/TS_FSM_FFd2 RA_11_OBUF RA_5_OBUF
|
||||
cnt/SndCSWRr RA_2_OBUF RA_6_OBUF iobs/Load1
|
||||
EXP13_ iobs/Sent
|
||||
PARTITION FB6_1 iobm/IOS_FSM_FFd6 nVMA_IOBout iobm/IOS_FSM_FFd2 iobm/IOS_FSM_FFd7
|
||||
iobm/IOS_FSM_FFd3 iobm/ES<2> iobm/ES<0> IOU0
|
||||
nLDS_IOBout IOL0 nUDS_IOBout nAS_IOBout
|
||||
iobm/ES<3> nADoutLE1_OBUF nADoutLE0_OBUF iobm/ES<1>
|
||||
nDinLE_OBUF IODONE
|
||||
PARTITION FB7_1 iobm/IOS_FSM_FFd6 RA_1_OBUF iobm/IOS_FSM_FFd2 BACTr
|
||||
RA_7_OBUF RA_0_OBUF iobm/IOS_FSM_FFd7 RA_8_OBUF
|
||||
RA_10_OBUF iobm/IOS_FSM_FFd3 RA_9_OBUF MCKE_OBUF
|
||||
PARTITION FB7_1 cnt/VIACSr RA_1_OBUF cnt/SCSICSr cnt/IWMCSr
|
||||
RA_7_OBUF RA_0_OBUF cnt/IACK1CSr RA_8_OBUF
|
||||
RA_10_OBUF cnt/IACK0CSr RA_9_OBUF MCKE_OBUF
|
||||
ALE0M RnW_IOBout GA_23_OBUF$BUF0 iobm/DoutOE
|
||||
GA_22_OBUF$BUF0 IOACT
|
||||
PARTITION FB8_1 RAMReady RA_11_OBUF$BUF0 cnt/VIACSr cnt/SCSICSr
|
||||
nRAS_OBUF nRAMLWE_OBUF cnt/SCCCSr nRAMUWE_OBUF
|
||||
ram/RS<2> ram/RS<1> IONPReady nBERR_FSB_OBUF
|
||||
ram/RS<0> ram/RefCAS N0$BUF0 ram/RASEN
|
||||
ram/CASEndEN cnt/IWMCSr
|
||||
PARTITION FB8_1 RAMReady RA_11_OBUF$BUF0 ram/CASEndEN cnt/SCCCSr
|
||||
nRAS_OBUF nRAMLWE_OBUF ram/RS<1> nRAMUWE_OBUF
|
||||
ram/RS<2> cs/Overlay ram/RS<0> nBERR_FSB_OBUF
|
||||
IONPReady ram/RefCAS N0$BUF0 ram/RASEN
|
||||
ram/RASrf ram/RASEL
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
Release 8.1i - Fit P.20131013
|
||||
Copyright(c) 1995-2003 Xilinx Inc. All rights reserved
|
||||
|
||||
10-14-2024 0:50AM
|
||||
10-15-2024 3:20AM
|
||||
|
||||
NOTE: This file is designed to be imported into a spreadsheet program
|
||||
such as Microsoft Excel for viewing, printing and sorting. The pipe '|'
|
||||
|
@ -15,4 +15,4 @@
|
||||
sr (SLOW|FAST|slow|fast) "SLOW"
|
||||
dir (BIDIR|bidir|INPUT|input|OUTPUT|output) "BIDIR">
|
||||
]>
|
||||
<ibis><part arch="xc9500xl" device="XC95144XL" pkg="TQ100" spg="-10"/><pin dir="input" nm="A_FSB<21>" no="19"/><pin dir="input" nm="A_FSB<20>" no="18"/><pin dir="input" nm="A_FSB<19>" no="17"/><pin dir="input" nm="A_FSB<18>" no="16"/><pin dir="input" nm="A_FSB<17>" no="15"/><pin dir="input" nm="A_FSB<16>" no="14"/><pin dir="input" nm="A_FSB<15>" no="13"/><pin dir="input" nm="A_FSB<13>" no="11"/><pin dir="input" nm="C8M" no="23"/><pin dir="input" nm="C16M" no="22"/><pin dir="input" nm="A_FSB<22>" no="20"/><pin dir="input" nm="A_FSB<23>" no="24"/><pin dir="input" nm="A_FSB<14>" no="12"/><pin dir="input" nm="A_FSB<12>" no="10"/><pin dir="input" nm="A_FSB<11>" no="9"/><pin dir="input" nm="A_FSB<10>" no="8"/><pin dir="input" nm="FCLK" no="27"/><pin dir="input" nm="nAS_FSB" no="32"/><pin dir="input" nm="nWE_FSB" no="29"/><pin dir="input" nm="nDTACK_IOB" no="78"/><pin dir="input" nm="nBERR_IOB" no="76"/><pin dir="input" nm="nLDS_FSB" no="30"/><pin dir="input" nm="nUDS_FSB" no="33"/><pin dir="input" nm="E" no="25"/><pin dir="input" nm="nIPL2" no="92"/><pin dir="input" nm="A_FSB<9>" no="7"/><pin dir="input" nm="A_FSB<8>" no="6"/><pin dir="input" nm="nVPA_IOB" no="77"/><pin dir="input" nm="A_FSB<1>" no="94"/><pin dir="input" nm="A_FSB<7>" no="4"/><pin dir="input" nm="A_FSB<2>" no="95"/><pin dir="input" nm="A_FSB<3>" no="96"/><pin dir="input" nm="A_FSB<4>" no="97"/><pin dir="input" nm="A_FSB<5>" no="2"/><pin dir="input" nm="A_FSB<6>" no="3"/><pin dir="output" nm="nVMA_IOB" no="74" sr="slow"/><pin dir="output" nm="RnW_IOB" no="59" sr="slow"/><pin dir="output" nm="nLDS_IOB" no="79" sr="slow"/><pin dir="output" nm="nUDS_IOB" no="80" sr="slow"/><pin dir="output" nm="nAS_IOB" no="81" sr="slow"/><pin dir="output" nm="nCAS" no="36" sr="fast"/><pin dir="output" nm="nDTACK_FSB" no="28" sr="slow"/><pin dir="output" nm="MCKE" no="58" sr="fast"/><pin dir="output" nm="nBERR_FSB" no="70" sr="slow"/><pin dir="output" nm="nOE" no="37" sr="slow"/><pin dir="output" nm="nVPA_FSB" no="93" sr="slow"/><pin dir="output" nm="RA<3>" no="41" sr="fast"/><pin dir="output" nm="RA<0>" no="53" sr="fast"/><pin dir="output" nm="RA<10>" no="55" sr="fast"/><pin dir="output" nm="RA<1>" no="50" sr="fast"/><pin dir="output" nm="RA<2>" no="43" sr="fast"/><pin dir="output" nm="RA<4>" no="40" sr="fast"/><pin dir="output" nm="RA<5>" no="42" sr="fast"/><pin dir="output" nm="RA<6>" no="46" sr="fast"/><pin dir="output" nm="RA<7>" no="52" sr="fast"/><pin dir="output" nm="RA<8>" no="54" sr="fast"/><pin dir="output" nm="RA<9>" no="56" sr="fast"/><pin dir="output" nm="nDoutOE" no="89" sr="fast"/><pin dir="output" nm="nADoutLE0" no="85" sr="slow"/><pin dir="output" nm="nDinLE" no="86" sr="fast"/><pin dir="output" nm="nRAS" no="64" sr="fast"/><pin dir="output" nm="nBR_IOB" no="72" sr="slow"/><pin dir="output" nm="GA<22>" no="61" sr="fast"/><pin dir="output" nm="GA<23>" no="60" sr="fast"/><pin dir="output" nm="RA<11>" no="63" sr="fast"/><pin dir="output" nm="nADoutLE1" no="82" sr="fast"/><pin dir="output" nm="nAoutOE" no="87" sr="slow"/><pin dir="output" nm="nDinOE" no="90" sr="slow"/><pin dir="output" nm="nRAMLWE" no="65" sr="slow"/><pin dir="output" nm="nRAMUWE" no="66" sr="slow"/><pin dir="output" nm="nROMOE" no="35" sr="slow"/><pin dir="output" nm="nROMWE" no="34" sr="slow"/><pin dir="bidir" nm="nRES" no="91" sr="slow"/></ibis>
|
||||
<ibis><part arch="xc9500xl" device="XC95144XL" pkg="TQ100" spg="-10"/><pin dir="input" nm="A_FSB<21>" no="19"/><pin dir="input" nm="A_FSB<20>" no="18"/><pin dir="input" nm="A_FSB<19>" no="17"/><pin dir="input" nm="A_FSB<18>" no="16"/><pin dir="input" nm="A_FSB<17>" no="15"/><pin dir="input" nm="A_FSB<16>" no="14"/><pin dir="input" nm="A_FSB<15>" no="13"/><pin dir="input" nm="A_FSB<13>" no="11"/><pin dir="input" nm="C8M" no="23"/><pin dir="input" nm="C16M" no="22"/><pin dir="input" nm="A_FSB<23>" no="24"/><pin dir="input" nm="A_FSB<22>" no="20"/><pin dir="input" nm="nWE_FSB" no="29"/><pin dir="input" nm="A_FSB<14>" no="12"/><pin dir="input" nm="A_FSB<12>" no="10"/><pin dir="input" nm="A_FSB<11>" no="9"/><pin dir="input" nm="A_FSB<10>" no="8"/><pin dir="input" nm="FCLK" no="27"/><pin dir="input" nm="nAS_FSB" no="32"/><pin dir="input" nm="nDTACK_IOB" no="78"/><pin dir="input" nm="nBERR_IOB" no="76"/><pin dir="input" nm="nLDS_FSB" no="30"/><pin dir="input" nm="nUDS_FSB" no="33"/><pin dir="input" nm="E" no="25"/><pin dir="input" nm="A_FSB<1>" no="94"/><pin dir="input" nm="nIPL2" no="92"/><pin dir="input" nm="A_FSB<9>" no="7"/><pin dir="input" nm="A_FSB<8>" no="6"/><pin dir="input" nm="nVPA_IOB" no="77"/><pin dir="input" nm="A_FSB<2>" no="95"/><pin dir="input" nm="A_FSB<7>" no="4"/><pin dir="input" nm="A_FSB<3>" no="96"/><pin dir="input" nm="A_FSB<4>" no="97"/><pin dir="input" nm="A_FSB<5>" no="2"/><pin dir="input" nm="A_FSB<6>" no="3"/><pin dir="output" nm="nVMA_IOB" no="74" sr="slow"/><pin dir="output" nm="RnW_IOB" no="59" sr="slow"/><pin dir="output" nm="nLDS_IOB" no="79" sr="slow"/><pin dir="output" nm="nUDS_IOB" no="80" sr="slow"/><pin dir="output" nm="nAS_IOB" no="81" sr="slow"/><pin dir="output" nm="nCAS" no="36" sr="fast"/><pin dir="output" nm="nDTACK_FSB" no="28" sr="slow"/><pin dir="output" nm="nVPA_FSB" no="93" sr="slow"/><pin dir="output" nm="MCKE" no="58" sr="fast"/><pin dir="output" nm="nBERR_FSB" no="70" sr="slow"/><pin dir="output" nm="nOE" no="37" sr="slow"/><pin dir="output" nm="RA<3>" no="41" sr="fast"/><pin dir="output" nm="RA<0>" no="53" sr="fast"/><pin dir="output" nm="RA<10>" no="55" sr="fast"/><pin dir="output" nm="RA<1>" no="50" sr="fast"/><pin dir="output" nm="RA<2>" no="43" sr="fast"/><pin dir="output" nm="RA<4>" no="40" sr="fast"/><pin dir="output" nm="RA<5>" no="42" sr="fast"/><pin dir="output" nm="RA<6>" no="46" sr="fast"/><pin dir="output" nm="RA<7>" no="52" sr="fast"/><pin dir="output" nm="RA<8>" no="54" sr="fast"/><pin dir="output" nm="RA<9>" no="56" sr="fast"/><pin dir="output" nm="nDoutOE" no="89" sr="fast"/><pin dir="output" nm="nADoutLE0" no="85" sr="slow"/><pin dir="output" nm="nDinLE" no="86" sr="fast"/><pin dir="output" nm="nRAS" no="64" sr="fast"/><pin dir="output" nm="nBR_IOB" no="72" sr="slow"/><pin dir="output" nm="GA<22>" no="61" sr="fast"/><pin dir="output" nm="GA<23>" no="60" sr="fast"/><pin dir="output" nm="RA<11>" no="63" sr="fast"/><pin dir="output" nm="nADoutLE1" no="82" sr="fast"/><pin dir="output" nm="nAoutOE" no="87" sr="slow"/><pin dir="output" nm="nDinOE" no="90" sr="slow"/><pin dir="output" nm="nRAMLWE" no="65" sr="slow"/><pin dir="output" nm="nRAMUWE" no="66" sr="slow"/><pin dir="output" nm="nROMOE" no="35" sr="slow"/><pin dir="output" nm="nROMWE" no="34" sr="slow"/><pin dir="bidir" nm="nRES" no="91" sr="slow"/></ibis>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,13 +4,13 @@ Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
|
||||
|
||||
|
||||
Total REAL time to Xst completion: 0.00 secs
|
||||
Total CPU time to Xst completion: 0.08 secs
|
||||
Total CPU time to Xst completion: 0.10 secs
|
||||
|
||||
--> Parameter xsthdpdir set to xst
|
||||
|
||||
|
||||
Total REAL time to Xst completion: 0.00 secs
|
||||
Total CPU time to Xst completion: 0.08 secs
|
||||
Total CPU time to Xst completion: 0.10 secs
|
||||
|
||||
--> Reading design: WarpSE.prj
|
||||
|
||||
@ -144,6 +144,7 @@ Performing bidirectional port resolution...
|
||||
|
||||
Synthesizing Unit <CS>.
|
||||
Related source file is "../CS.v".
|
||||
WARNING:Xst:647 - Input <A<7:3>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
Found 1-bit register for signal <Overlay>.
|
||||
Unit <CS> synthesized.
|
||||
|
||||
@ -241,14 +242,6 @@ Unit <IOBM> synthesized.
|
||||
|
||||
Synthesizing Unit <CNT>.
|
||||
Related source file is "../CNT.v".
|
||||
WARNING:Xst:647 - Input <SlowSCC> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowInterval> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowIACK> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowIWM> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowSnd> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowSCSI> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowVIA> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <SlowClockGate> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
Found 1-bit register for signal <RefUrg>.
|
||||
Found 1-bit register for signal <RefReq>.
|
||||
Found 1-bit register for signal <nBR_IOB>.
|
||||
@ -257,11 +250,12 @@ WARNING:Xst:647 - Input <SlowClockGate> is never used. This port will be preserv
|
||||
Found 1-bit register for signal <nRESout>.
|
||||
Found 1-bit register for signal <AoutOE>.
|
||||
Found 1-bit register for signal <MCKE>.
|
||||
Found 4-bit subtractor for signal <$sub0000> created at line 99.
|
||||
Found 4-bit subtractor for signal <$sub0000> created at line 100.
|
||||
Found 4-bit register for signal <C8Mr>.
|
||||
Found 1-bit register for signal <ClockGateEN>.
|
||||
Found 2-bit register for signal <Er>.
|
||||
Found 1-bit register for signal <IACKCSr>.
|
||||
Found 1-bit register for signal <IACK0CSr>.
|
||||
Found 1-bit register for signal <IACK1CSr>.
|
||||
Found 2-bit register for signal <IS>.
|
||||
Found 1-bit register for signal <IWMCSr>.
|
||||
Found 12-bit up counter for signal <LTimer>.
|
||||
@ -276,7 +270,7 @@ WARNING:Xst:647 - Input <SlowClockGate> is never used. This port will be preserv
|
||||
Found 1-bit register for signal <VIACSr>.
|
||||
Summary:
|
||||
inferred 2 Counter(s).
|
||||
inferred 16 D-type flip-flop(s).
|
||||
inferred 17 D-type flip-flop(s).
|
||||
inferred 1 Adder/Subtractor(s).
|
||||
Unit <CNT> synthesized.
|
||||
|
||||
@ -297,15 +291,6 @@ Synthesizing Unit <WarpSE>.
|
||||
WARNING:Xst:647 - Input <nBG_IOB> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:647 - Input <DBG> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
WARNING:Xst:646 - Signal <nPOR> is assigned but never used. This unconnected signal will be trimmed during the optimization process.
|
||||
WARNING:Xst:653 - Signal <SlowVIA> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowSnd> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowSCSI> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowSCC> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowInterval> is used but never assigned. This sourceless signal will be automatically connected to value 0000.
|
||||
WARNING:Xst:653 - Signal <SlowIWM> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowIACK> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:653 - Signal <SlowClockGate> is used but never assigned. This sourceless signal will be automatically connected to value 0.
|
||||
WARNING:Xst:646 - Signal <SetCSWR> is assigned but never used. This unconnected signal will be trimmed during the optimization process.
|
||||
Found 1-bit tristate buffer for signal <RnW_IOB>.
|
||||
Found 1-bit tristate buffer for signal <nAS_IOB>.
|
||||
Found 1-bit tristate buffer for signal <nBR_IOB>.
|
||||
@ -329,8 +314,8 @@ Macro Statistics
|
||||
# Counters : 3
|
||||
12-bit up counter : 1
|
||||
4-bit up counter : 2
|
||||
# Registers : 72
|
||||
1-bit register : 68
|
||||
# Registers : 73
|
||||
1-bit register : 69
|
||||
2-bit register : 2
|
||||
3-bit register : 1
|
||||
4-bit register : 1
|
||||
@ -379,8 +364,8 @@ Macro Statistics
|
||||
# Counters : 3
|
||||
12-bit up counter : 1
|
||||
4-bit up counter : 2
|
||||
# Registers : 51
|
||||
Flip-Flops : 51
|
||||
# Registers : 52
|
||||
Flip-Flops : 52
|
||||
|
||||
=========================================================================
|
||||
|
||||
@ -450,25 +435,26 @@ Design Statistics
|
||||
# IOs : 80
|
||||
|
||||
Cell Usage :
|
||||
# BELS : 683
|
||||
# AND2 : 211
|
||||
# BELS : 685
|
||||
# AND2 : 214
|
||||
# AND3 : 26
|
||||
# AND4 : 13
|
||||
# AND5 : 3
|
||||
# AND6 : 2
|
||||
# AND5 : 4
|
||||
# AND6 : 1
|
||||
# AND8 : 2
|
||||
# GND : 6
|
||||
# INV : 276
|
||||
# OR2 : 108
|
||||
# GND : 7
|
||||
# INV : 272
|
||||
# OR2 : 110
|
||||
# OR3 : 10
|
||||
# OR4 : 4
|
||||
# OR5 : 1
|
||||
# XOR2 : 21
|
||||
# FlipFlops/Latches : 108
|
||||
# FD : 66
|
||||
# FlipFlops/Latches : 109
|
||||
# FD : 67
|
||||
# FDCE : 37
|
||||
# FDCP : 1
|
||||
# FDP : 4
|
||||
# FDP : 2
|
||||
# FDPE : 2
|
||||
# IO Buffers : 73
|
||||
# IBUF : 35
|
||||
# IOBUFE : 1
|
||||
@ -478,13 +464,13 @@ Cell Usage :
|
||||
|
||||
|
||||
Total REAL time to Xst completion: 5.00 secs
|
||||
Total CPU time to Xst completion: 4.93 secs
|
||||
Total CPU time to Xst completion: 4.94 secs
|
||||
|
||||
-->
|
||||
|
||||
Total memory usage is 262048 kilobytes
|
||||
Total memory usage is 263072 kilobytes
|
||||
|
||||
Number of errors : 0 ( 0 filtered)
|
||||
Number of warnings : 21 ( 0 filtered)
|
||||
Number of warnings : 5 ( 0 filtered)
|
||||
Number of infos : 0 ( 0 filtered)
|
||||
|
||||
|
@ -24,16 +24,16 @@ AUTO_TS_P2P:FROM:FCLK:TO:nCAS:1
|
||||
AUTO_TS_F2P:FROM:nCAS_OBUF.Q:TO:nCAS:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nDTACK_FSB:1
|
||||
AUTO_TS_F2P:FROM:nDTACK_FSB_OBUF.Q:TO:nDTACK_FSB:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nVPA_FSB:1
|
||||
AUTO_TS_F2P:FROM:nVPA_FSB_OBUF.Q:TO:nVPA_FSB:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:MCKE:1
|
||||
AUTO_TS_F2P:FROM:MCKE_OBUF.Q:TO:MCKE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nBERR_FSB:1
|
||||
AUTO_TS_F2P:FROM:nBERR_FSB_OBUF.Q:TO:nBERR_FSB:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nOE:1
|
||||
AUTO_TS_F2P:FROM:nOE_OBUF.Q:TO:nOE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nVPA_FSB:1
|
||||
AUTO_TS_F2P:FROM:nVPA_FSB_OBUF.Q:TO:nVPA_FSB:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<20>:TO:RA<3>:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:RA<3>:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<20>:TO:RA<3>:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<19>:TO:RA<3>:1
|
||||
AUTO_TS_F2P:FROM:ram/RASEL.Q:TO:RA<3>:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:RA<0>:1
|
||||
@ -87,8 +87,8 @@ AUTO_TS_F2P:FROM:ALE0S.Q:TO:nADoutLE0:1
|
||||
AUTO_TS_P2P:FROM:C16M:TO:nDinLE:1
|
||||
AUTO_TS_F2P:FROM:nDinLE_OBUF.Q:TO:nDinLE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nRAS:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nRAS:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<23>:TO:nRAS:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nRAS:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nRAS:1
|
||||
AUTO_TS_F2P:FROM:ram/RASrf.Q:TO:nRAS:1
|
||||
AUTO_TS_F2P:FROM:cs/Overlay.Q:TO:nRAS:1
|
||||
@ -106,8 +106,8 @@ AUTO_TS_F2P:FROM:nADoutLE1_OBUF.Q:TO:nADoutLE1:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nAoutOE:1
|
||||
AUTO_TS_F2P:FROM:nAoutOE_OBUF.Q:TO:nAoutOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<23>:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:nWE_FSB:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<21>:TO:nDinOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nDinOE:1
|
||||
@ -121,20 +121,20 @@ AUTO_TS_P2P:FROM:nWE_FSB:TO:nRAMUWE:1
|
||||
AUTO_TS_P2P:FROM:nUDS_FSB:TO:nRAMUWE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nRAMUWE:1
|
||||
AUTO_TS_F2P:FROM:ram/RASEL.Q:TO:nRAMUWE:1
|
||||
AUTO_TS_P2P:FROM:nWE_FSB:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<21>:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<20>:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<23>:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:nWE_FSB:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:FCLK:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nROMOE:1
|
||||
AUTO_TS_F2P:FROM:cs/Overlay.Q:TO:nROMOE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<21>:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<20>:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<23>:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:A_FSB<22>:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:nWE_FSB:TO:nROMWE:1
|
||||
AUTO_TS_P2P:FROM:nAS_FSB:TO:nROMWE:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:nCAS_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:nCAS_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:nCAS_OBUF.D:1
|
||||
@ -144,6 +144,7 @@ AUTO_TS_P2F:FROM:nAS_FSB:TO:nCAS_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nCAS_OBUF.SETF:1
|
||||
AUTO_TS_F2F:FROM:ram/RefCAS.Q:TO:nCAS_OBUF.RSTF:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nCAS_OBUF.RSTF:1
|
||||
AUTO_TS_F2F:FROM:nDTACK_FSB_OBUF.Q:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:IONPReady.Q:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:RAMReady.Q:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:nDTACK_FSB_OBUF.D:1
|
||||
@ -160,22 +161,22 @@ AUTO_TS_P2F:FROM:A_FSB<17>:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:nDTACK_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/Sent.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/Sent.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:IORW.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IORW1.Q:TO:IORW.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:IORW.D:1
|
||||
@ -196,10 +197,9 @@ AUTO_TS_P2F:FROM:FCLK:TO:cnt/LTimer<0>.CE:1
|
||||
AUTO_TS_F2F:FROM:cnt/nRESr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<0>.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/TimerTick.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACKCSr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK0CSr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IWMCSr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/VIACSr.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<1>.Q:TO:cnt/QS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<2>.Q:TO:cnt/QS<0>.D:1
|
||||
@ -333,10 +333,9 @@ AUTO_TS_F2F:FROM:cnt/TimerTick.Q:TO:cnt/LTimer<9>.CE:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/LTimer<9>.CE:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<0>.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<1>.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACKCSr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK0CSr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IWMCSr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/VIACSr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nRESr.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/TimerTick.Q:TO:cnt/QS<1>.D:1
|
||||
@ -345,10 +344,9 @@ AUTO_TS_F2F:FROM:cnt/QS<3>.Q:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/QS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<2>.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nRESr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACKCSr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK0CSr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IWMCSr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/VIACSr.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<0>.Q:TO:cnt/QS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<1>.Q:TO:cnt/QS<2>.D:1
|
||||
@ -381,10 +379,9 @@ AUTO_TS_F2F:FROM:cnt/TimerTick.Q:TO:cnt/LTimer<11>.CE:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/LTimer<11>.CE:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<3>.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nRESr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACKCSr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK0CSr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IWMCSr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/VIACSr.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<0>.Q:TO:cnt/QS<3>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/QS<1>.Q:TO:cnt/QS<3>.D:1
|
||||
@ -398,15 +395,15 @@ AUTO_TS_F2F:FROM:cnt/C8Mr<2>.Q:TO:cnt/nPOR.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/C8Mr<3>.Q:TO:cnt/nPOR.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/nPOR.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cs/Overlay.D:1
|
||||
AUTO_TS_F2F:FROM:nRESout.Q:TO:cs/Overlay.D:1
|
||||
AUTO_TS_F2F:FROM:cs/Overlay.Q:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:nRES:TO:cs/Overlay.D:1
|
||||
AUTO_TS_F2F:FROM:nRESout.Q:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cs/Overlay.D:1
|
||||
AUTO_TS_P2F:FROM:nRES:TO:cs/Overlay.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:ram/RefDone.D:1
|
||||
AUTO_TS_F2F:FROM:RefReq.Q:TO:ram/RefDone.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RefDone.Q:TO:ram/RefDone.D:1
|
||||
@ -414,84 +411,87 @@ AUTO_TS_P2F:FROM:FCLK:TO:ram/RefDone.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:IONPReady.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<1>.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<0>.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<1>.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:IONPReady.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:IONPReady.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACKCSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK0CSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IWMCSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/VIACSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nRESr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IACK1CSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCCCSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SCSICSr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/SndCSWRr.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/ClockGateEN.Q:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/ClockGateEN.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Load1.Q:TO:iobs/IOL1.CE:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/IOL1.CE:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IORW1.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/IORW1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Load1.Q:TO:iobs/IOU1.CE:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/IOU1.CE:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:nVPA_FSB_OBUF.Q:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/C8Mr<1>.Q:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/ClockGateEN.Q:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/C8Mr<0>.Q:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:MCKE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:nBERR_FSB_OBUF.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<1>.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:nBERR_FSB_OBUF.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<0>.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONEr<1>.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:nBERR_IOB:TO:nBERR_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:cs/Overlay.Q:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nOE_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:IONPReady.Q:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nVPA_FSB_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:ram/RASEL.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RASEL.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:ram/RASEL.D:1
|
||||
AUTO_TS_F2F:FROM:cs/Overlay.Q:TO:ram/RASEL.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RASEL.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RASEL.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RASEL.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RASEL.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RASEL.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RASEL.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:ram/RS<1>.D:1
|
||||
@ -501,16 +501,16 @@ AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RS<1>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RS<1>.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cs/Overlay.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RASEN.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:nDTACK_FSB_OBUF.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RASEN.Q:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:ram/RS<2>.D:1
|
||||
@ -520,9 +520,9 @@ AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:RefReq.Q:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:BACTr.Q:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RS<2>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/Timer<0>.Q:TO:cnt/TimerTick.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/Timer<1>.Q:TO:cnt/TimerTick.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/Timer<2>.Q:TO:cnt/TimerTick.D:1
|
||||
@ -537,21 +537,21 @@ AUTO_TS_P2F:FROM:FCLK:TO:iobs/TS_FSM_FFd1.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IOACTr.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/TS_FSM_FFd2.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nPOR.Q:TO:cnt/IS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IS<1>.Q:TO:cnt/IS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IS<0>.Q:TO:cnt/IS<1>.D:1
|
||||
@ -559,13 +559,14 @@ AUTO_TS_F2F:FROM:cnt/LTimerTick.Q:TO:cnt/IS<1>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IS<1>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/C8Mr<0>.Q:TO:cnt/C8Mr<1>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/C8Mr<1>.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IACKCSr.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<1>:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IACK0CSr.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/nPOR.Q:TO:cnt/IS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IS<0>.Q:TO:cnt/IS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/IS<1>.Q:TO:cnt/IS<0>.D:1
|
||||
@ -573,21 +574,21 @@ AUTO_TS_F2F:FROM:cnt/LTimerTick.Q:TO:cnt/IS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IS<0>.D:1
|
||||
AUTO_TS_P2F:FROM:nIPL2:TO:cnt/IS<0>.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<15>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<13>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<14>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<12>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<11>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<10>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<8>:TO:cnt/SndCSWRr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<9>:TO:cnt/SndCSWRr.D:1
|
||||
@ -617,37 +618,31 @@ AUTO_TS_F2F:FROM:QoSEN.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<19>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<18>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:nWE_FSB:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:iobs/Load1.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:iobs/Load1.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IWMCSr.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/VIACSr.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IODONErf.Q:TO:iobs/IODONEr<0>.D:1
|
||||
@ -667,8 +662,8 @@ AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RASEN.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RefDone.Q:TO:ram/RASEN.D:1
|
||||
AUTO_TS_F2F:FROM:nDTACK_FSB_OBUF.Q:TO:ram/RASEN.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RASEN.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RASEN.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RASEN.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RASEN.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RASEN.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:BACTr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:BACTr.D:1
|
||||
@ -694,17 +689,17 @@ AUTO_TS_F2F:FROM:nRESout.Q:TO:nRESout.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:nRESout.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:ALE0S.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ALE0S.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd2.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:QoSEN.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/IOACTr.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Sent.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<17>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<16>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:IOREQ.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:IOREQ.D:1
|
||||
@ -722,15 +717,29 @@ AUTO_TS_F2F:FROM:RefReq.Q:TO:RAMReady.D:1
|
||||
AUTO_TS_F2F:FROM:BACTr.Q:TO:RAMReady.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:RAMReady.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:RAMReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:RAMReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:RAMReady.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:RAMReady.D:1
|
||||
AUTO_TS_F2F:FROM:cnt/Er<0>.Q:TO:cnt/Er<1>.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/Er<1>.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<2>:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/IACK1CSr.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/SCCCSr.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<21>:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<20>:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:cnt/SCSICSr.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/TS_FSM_FFd1.Q:TO:iobs/Clear1.D:1
|
||||
@ -747,15 +756,15 @@ AUTO_TS_P2F:FROM:FCLK:TO:ram/RASrf.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<1>.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<0>.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RS<2>.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:RefReq.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:ram/RefDone.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:BACTr.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:ASrf.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:RefUrg.Q:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<23>:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:A_FSB<22>:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:ram/RefCAS.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Load1.Q:TO:nADoutLE1_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:nADoutLE1_OBUF.Q:TO:nADoutLE1_OBUF.D:1
|
||||
AUTO_TS_F2F:FROM:iobs/Clear1.Q:TO:nADoutLE1_OBUF.D:1
|
||||
@ -817,8 +826,8 @@ AUTO_TS_F2F:FROM:iobm/ES<1>.Q:TO:IODONE.D:1
|
||||
AUTO_TS_F2F:FROM:iobm/ES<2>.Q:TO:IODONE.D:1
|
||||
AUTO_TS_F2F:FROM:iobm/ES<3>.Q:TO:IODONE.D:1
|
||||
AUTO_TS_F2F:FROM:nRESout.Q:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:C8M:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:C16M:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:C8M:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:nBERR_IOB:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:nRES:TO:IODONE.D:1
|
||||
AUTO_TS_P2F:FROM:FCLK:TO:IODONE.D:1
|
||||
@ -937,9 +946,9 @@ AUTO_TS_P2F:FROM:nAS_FSB:TO:nDTACK_FSB_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:C16M:TO:C16M_IBUF/FCLK:1
|
||||
AUTO_TS_P2F:FROM:nLDS_FSB:TO:iobs/IOL1.D:1
|
||||
AUTO_TS_P2F:FROM:nUDS_FSB:TO:iobs/IOU1.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:nVPA_FSB_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:MCKE_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:nOE_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:nVPA_FSB_OBUF.SETF:1
|
||||
AUTO_TS_P2F:FROM:C8M:TO:iobm/C8Mr.D:1
|
||||
AUTO_TS_P2F:FROM:C8M:TO:cnt/C8Mr<0>.D:1
|
||||
AUTO_TS_P2F:FROM:nAS_FSB:TO:ASrf.D:1
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -28,6 +28,12 @@ FDCPE_BACTr: FDCPE port map (BACTr,BACTr_D,FCLK,'0','0');
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
GA(22) <= A_FSB(22);
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
@ -77,24 +83,26 @@ FDCPE_IONPReady: FDCPE port map (IONPReady,IONPReady_D,FCLK,'0','0');
|
||||
<br/> OR (NOT iobs/Sent AND NOT IONPReady)
|
||||
<br/> OR (NOT IONPReady AND NOT iobs/IODONEr(0))
|
||||
<br/> OR (NOT IONPReady AND iobs/IODONEr(1))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT IONPReady)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> NOT IONPReady AND NOT nWE_FSB));
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT QoSEN AND NOT IONPReady));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_IOREQ: FDCPE port map (IOREQ,IOREQ_D,FCLK,'0','0');
|
||||
<br/> IOREQ_D <= ((NOT A_FSB(21) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> IOREQ_D <= ((NOT A_FSB(17) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(20) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(19) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(18) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(20) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND nWE_FSB AND
|
||||
<br/> OR (NOT A_FSB(19) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(17) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(18) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND nWE_FSB AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2)
|
||||
<br/> OR (iobs/TS_FSM_FFd1 AND iobs/IOACTr)
|
||||
@ -170,13 +178,13 @@ RA(11) <= ((A_FSB(20) AND ram/RASEL)
|
||||
<br/> OR (A_FSB(19) AND NOT ram/RASEL));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_RAMReady: FDCPE port map (RAMReady,RAMReady_D,FCLK,'0','0');
|
||||
<br/> RAMReady_D <= ((ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (NOT ram/RS(1) AND ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (nAS_FSB AND NOT RefUrg AND NOT ram/RS(2) AND NOT ASrf)
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND NOT ram/RS(0) AND
|
||||
<br/> RAMReady_D <= ((nAS_FSB AND NOT RefUrg AND NOT ram/RS(2) AND NOT ASrf)
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB AND NOT ram/RS(0) AND
|
||||
<br/> NOT ram/RS(2))
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT ram/RS(0) AND NOT ram/RS(2) AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT ram/RS(0) AND NOT ram/RS(2) AND
|
||||
<br/> ASrf)
|
||||
<br/> OR (ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (NOT ram/RS(1) AND ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (ram/RefDone AND NOT ram/RS(2))
|
||||
<br/> OR (NOT RefReq AND NOT RefUrg AND NOT ram/RS(2))
|
||||
<br/> OR (NOT RefUrg AND ram/RS(0) AND NOT ram/RS(2))
|
||||
@ -219,20 +227,28 @@ FDCPE_cnt/C8Mr2: FDCPE port map (cnt/C8Mr(2),cnt/C8Mr(1),FCLK,'0','0');
|
||||
FDCPE_cnt/C8Mr3: FDCPE port map (cnt/C8Mr(3),cnt/C8Mr(2),FCLK,'0','0');
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/ClockGateEN: FDCPE port map (cnt/ClockGateEN,cnt/ClockGateEN_D,FCLK,'0','0');
|
||||
<br/> cnt/ClockGateEN_D <= ((cnt/ClockGateEN AND NOT cnt/IACKCSr AND cnt/nRESr AND
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND NOT cnt/VIACSr AND NOT cnt/SCSICSr)
|
||||
<br/> OR (NOT cnt/IACKCSr AND cnt/SndCSWRr AND cnt/nRESr AND
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND NOT cnt/VIACSr AND NOT cnt/SCSICSr));
|
||||
<br/> cnt/ClockGateEN_D <= ((cnt/ClockGateEN AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr AND NOT cnt/IACK1CSr AND NOT cnt/SCCCSr AND NOT cnt/SCSICSr)
|
||||
<br/> OR (cnt/IACK0CSr AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr AND NOT cnt/IACK1CSr AND NOT cnt/SCCCSr AND NOT cnt/SCSICSr)
|
||||
<br/> OR (cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr AND NOT cnt/IACK1CSr AND NOT cnt/SCCCSr AND NOT cnt/SCSICSr));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/Er0: FDCPE port map (cnt/Er(0),E,FCLK,'0','0');
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/Er1: FDCPE port map (cnt/Er(1),cnt/Er(0),FCLK,'0','0');
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/IACKCSr: FDCPE port map (cnt/IACKCSr,cnt/IACKCSr_D,FCLK,'0','0');
|
||||
<br/> cnt/IACKCSr_D <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> NOT nAS_FSB)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> ASrf));
|
||||
FDCPE_cnt/IACK0CSr: FDCPE port map (cnt/IACK0CSr,cnt/IACK0CSr_D,FCLK,'0','0');
|
||||
<br/> cnt/IACK0CSr_D <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND A_FSB(1))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> ASrf AND A_FSB(1)));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/IACK1CSr: FDCPE port map (cnt/IACK1CSr,cnt/IACK1CSr_D,FCLK,'0','0');
|
||||
<br/> cnt/IACK1CSr_D <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND A_FSB(2))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> ASrf AND A_FSB(2)));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/IS0: FTCPE port map (cnt/IS(0),cnt/IS_T(0),FCLK,'0','0');
|
||||
<br/> cnt/IS_T(0) <= ((NOT cnt/nPOR AND cnt/IS(0))
|
||||
@ -244,9 +260,9 @@ FDCPE_cnt/IS1: FDCPE port map (cnt/IS(1),cnt/IS_D(1),FCLK,'0','0');
|
||||
<br/> OR (cnt/nPOR AND cnt/IS(0) AND cnt/LTimerTick));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/IWMCSr: FDCPE port map (cnt/IWMCSr,cnt/IWMCSr_D,FCLK,'0','0');
|
||||
<br/> cnt/IWMCSr_D <= ((NOT A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> cnt/IWMCSr_D <= ((NOT A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB)
|
||||
<br/> OR (NOT A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> OR (NOT A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> ASrf));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/LTimer0: FTCPE port map (cnt/LTimer(0),'1',FCLK,'0','0',cnt/TimerTick);
|
||||
@ -303,94 +319,90 @@ FDCPE_cnt/LTimerTick: FDCPE port map (cnt/LTimerTick,cnt/LTimerTick_D,FCLK,'0','
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/QS0: FDCPE port map (cnt/QS(0),cnt/QS_D(0),FCLK,'0','0');
|
||||
<br/> cnt/QS_D(0) <= ((NOT cnt/nRESr)
|
||||
<br/> OR (cnt/QS(0) AND cnt/TimerTick AND NOT cnt/IACKCSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/IACKCSr AND cnt/IWMCSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/IACKCSr AND cnt/SCCCSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/IACKCSr AND cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/TimerTick AND NOT cnt/IACKCSr AND
|
||||
<br/> OR (cnt/QS(0) AND cnt/TimerTick AND NOT cnt/IACK0CSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/IACK0CSr AND cnt/IWMCSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/IACK0CSr AND cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/TimerTick AND NOT cnt/IACK0CSr AND
|
||||
<br/> NOT cnt/SndCSWRr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/QS(1) AND NOT cnt/QS(2) AND NOT cnt/QS(3) AND
|
||||
<br/> NOT cnt/IACKCSr AND NOT cnt/SndCSWRr));
|
||||
<br/> NOT cnt/IACK0CSr AND NOT cnt/SndCSWRr));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/QS1: FDCPE port map (cnt/QS(1),cnt/QS_D(1),FCLK,'0','0');
|
||||
<br/> cnt/QS_D(1) <= ((cnt/QS(0) AND NOT cnt/QS(1) AND NOT cnt/IACKCSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND
|
||||
<br/> NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(1) AND NOT cnt/TimerTick AND NOT cnt/IACKCSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND
|
||||
<br/> NOT cnt/VIACSr)
|
||||
<br/> cnt/QS_D(1) <= ((cnt/QS(0) AND NOT cnt/QS(1) AND NOT cnt/IACK0CSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(1) AND NOT cnt/TimerTick AND NOT cnt/IACK0CSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND cnt/QS(1) AND cnt/TimerTick AND
|
||||
<br/> NOT cnt/IACKCSr AND NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/SCCCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(1) AND NOT cnt/QS(2) AND NOT cnt/QS(3) AND NOT cnt/IACKCSr AND
|
||||
<br/> NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND
|
||||
<br/> NOT cnt/IACK0CSr AND NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(1) AND NOT cnt/QS(2) AND NOT cnt/QS(3) AND
|
||||
<br/> NOT cnt/IACK0CSr AND NOT cnt/SndCSWRr AND cnt/nRESr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/QS2: FTCPE port map (cnt/QS(2),cnt/QS_T(2),FCLK,'0','0');
|
||||
<br/> cnt/QS_T(2) <= ((cnt/QS(2) AND NOT cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(2) AND cnt/IACKCSr AND cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(2) AND cnt/IACK0CSr AND cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(2) AND cnt/SndCSWRr AND cnt/nRESr AND
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND NOT cnt/VIACSr)
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/QS(1) AND cnt/QS(2) AND
|
||||
<br/> cnt/TimerTick AND NOT cnt/IACKCSr AND NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/SCCCSr AND NOT cnt/VIACSr)
|
||||
<br/> cnt/TimerTick AND NOT cnt/IACK0CSr AND NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/QS(1) AND NOT cnt/QS(2) AND cnt/QS(3) AND
|
||||
<br/> cnt/TimerTick AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND
|
||||
<br/> NOT cnt/VIACSr));
|
||||
<br/> cnt/TimerTick AND cnt/nRESr AND NOT cnt/IWMCSr AND NOT cnt/VIACSr));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/QS3: FTCPE port map (cnt/QS(3),cnt/QS_T(3),FCLK,'0','0');
|
||||
<br/> cnt/QS_T(3) <= ((cnt/QS(3) AND NOT cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(3) AND cnt/IACKCSr AND cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(3) AND cnt/IACK0CSr AND cnt/nRESr)
|
||||
<br/> OR (NOT cnt/QS(3) AND cnt/SndCSWRr AND cnt/nRESr AND
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/SCCCSr AND NOT cnt/VIACSr)
|
||||
<br/> NOT cnt/IWMCSr AND NOT cnt/VIACSr)
|
||||
<br/> OR (NOT cnt/QS(0) AND NOT cnt/QS(1) AND NOT cnt/QS(2) AND cnt/QS(3) AND
|
||||
<br/> cnt/TimerTick AND NOT cnt/IACKCSr AND NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/SCCCSr AND NOT cnt/VIACSr));
|
||||
<br/> cnt/TimerTick AND NOT cnt/IACK0CSr AND NOT cnt/SndCSWRr AND NOT cnt/IWMCSr AND
|
||||
<br/> NOT cnt/VIACSr));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/SCCCSr: FDCPE port map (cnt/SCCCSr,cnt/SCCCSr_D,FCLK,'0','0');
|
||||
<br/> cnt/SCCCSr_D <= ((A_FSB(20) AND NOT A_FSB(22) AND A_FSB(23) AND NOT nAS_FSB)
|
||||
<br/> OR (A_FSB(20) AND NOT A_FSB(22) AND A_FSB(23) AND ASrf));
|
||||
<br/> cnt/SCCCSr_D <= ((A_FSB(20) AND A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(23) AND NOT A_FSB(22) AND ASrf));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/SCSICSr: FDCPE port map (cnt/SCSICSr,cnt/SCSICSr_D,FCLK,'0','0');
|
||||
<br/> cnt/SCSICSr_D <= ((NOT A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> cnt/SCSICSr_D <= ((NOT A_FSB(21) AND A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB)
|
||||
<br/> OR (NOT A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> OR (NOT A_FSB(21) AND A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> ASrf));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/SndCSWRr: FDCPE port map (cnt/SndCSWRr,cnt/SndCSWRr_D,FCLK,'0','0');
|
||||
<br/> cnt/SndCSWRr_D <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND A_FSB(10) AND
|
||||
<br/> NOT nWE_FSB AND ASrf AND A_FSB(8))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND
|
||||
<br/> A_FSB(10) AND ASrf AND A_FSB(8))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND NOT A_FSB(10) AND
|
||||
<br/> NOT nWE_FSB AND ASrf AND A_FSB(9))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND
|
||||
<br/> NOT A_FSB(10) AND ASrf AND A_FSB(9))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND NOT A_FSB(10) AND
|
||||
<br/> NOT nWE_FSB AND ASrf AND A_FSB(8))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND
|
||||
<br/> NOT A_FSB(10) AND ASrf AND A_FSB(8))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND A_FSB(10) AND
|
||||
<br/> NOT nAS_FSB AND NOT nWE_FSB AND A_FSB(9))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND
|
||||
<br/> A_FSB(10) AND NOT nAS_FSB AND A_FSB(9))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND A_FSB(10) AND
|
||||
<br/> NOT nAS_FSB AND NOT nWE_FSB AND A_FSB(8))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND
|
||||
<br/> A_FSB(10) AND NOT nAS_FSB AND A_FSB(8))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND A_FSB(10) AND
|
||||
<br/> NOT nWE_FSB AND ASrf AND A_FSB(9))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND A_FSB(14) AND A_FSB(12) AND A_FSB(11) AND
|
||||
<br/> A_FSB(10) AND ASrf AND A_FSB(9))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND NOT A_FSB(10) AND
|
||||
<br/> NOT nAS_FSB AND NOT nWE_FSB AND A_FSB(9))
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND
|
||||
<br/> NOT A_FSB(10) AND NOT nAS_FSB AND A_FSB(9))
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(22) AND
|
||||
<br/> NOT A_FSB(23) AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND NOT A_FSB(10) AND
|
||||
<br/> NOT nAS_FSB AND NOT nWE_FSB AND A_FSB(8)));
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND A_FSB(15) AND A_FSB(13) AND NOT A_FSB(23) AND
|
||||
<br/> NOT A_FSB(22) AND NOT nWE_FSB AND NOT A_FSB(14) AND NOT A_FSB(12) AND NOT A_FSB(11) AND
|
||||
<br/> NOT A_FSB(10) AND NOT nAS_FSB AND A_FSB(8)));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/Timer0: FTCPE port map (cnt/Timer(0),cnt/Timer_T(0),FCLK,'0','0',cnt/Timer_CE(0));
|
||||
<br/> cnt/Timer_T(0) <= (NOT cnt/Timer(0) AND cnt/Timer(1) AND NOT cnt/Timer(2) AND
|
||||
@ -418,9 +430,9 @@ FDCPE_cnt/TimerTick: FDCPE port map (cnt/TimerTick,cnt/TimerTick_D,FCLK,'0','0')
|
||||
<br/> cnt/Timer(3) AND NOT cnt/Er(0) AND cnt/Er(1));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_cnt/VIACSr: FDCPE port map (cnt/VIACSr,cnt/VIACSr_D,FCLK,'0','0');
|
||||
<br/> cnt/VIACSr_D <= ((A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> cnt/VIACSr_D <= ((A_FSB(21) AND NOT A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB)
|
||||
<br/> OR (A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> OR (A_FSB(21) AND NOT A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> ASrf));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cnt/nPOR: FTCPE port map (cnt/nPOR,cnt/nPOR_T,FCLK,'0','0');
|
||||
@ -433,11 +445,11 @@ FTCPE_cnt/nPOR: FTCPE port map (cnt/nPOR,cnt/nPOR_T,FCLK,'0','0');
|
||||
FDCPE_cnt/nRESr: FDCPE port map (cnt/nRESr,nRES.PIN,FCLK,'0','0');
|
||||
</td></tr><tr><td>
|
||||
FTCPE_cs/Overlay: FTCPE port map (cs/Overlay,cs/Overlay_T,FCLK,'0','0');
|
||||
<br/> cs/Overlay_T <= ((nAS_FSB AND NOT cs/Overlay AND NOT nRES.PIN AND NOT ASrf)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> NOT nAS_FSB AND cs/Overlay)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> cs/Overlay AND ASrf));
|
||||
<br/> cs/Overlay_T <= ((NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> cs/Overlay AND ASrf)
|
||||
<br/> OR (nAS_FSB AND NOT cs/Overlay AND NOT nRES.PIN AND NOT ASrf)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND cs/Overlay));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_iobm/C8Mr: FDCPE port map (iobm/C8Mr,C8M,C16M,'0','0');
|
||||
</td></tr><tr><td>
|
||||
@ -516,54 +528,92 @@ FDCPE_iobs/IODONErf: FDCPE port map (iobs/IODONErf,IODONE,NOT FCLK,'0','0');
|
||||
FDCPE_iobs/IOL1: FDCPE port map (iobs/IOL1,NOT nLDS_FSB,FCLK,'0','0',iobs/Load1);
|
||||
</td></tr><tr><td>
|
||||
FTCPE_iobs/IORW1: FTCPE port map (iobs/IORW1,iobs/IORW1_T,FCLK,'0','0');
|
||||
<br/> iobs/IORW1_T <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND NOT nWE_FSB AND iobs/IORW1 AND iobs/TS_FSM_FFd1 AND
|
||||
<br/> iobs/IORW1_T <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nWE_FSB AND NOT nAS_FSB AND NOT iobs/Sent AND NOT iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd1 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nWE_FSB AND NOT iobs/Sent AND iobs/IORW1 AND iobs/TS_FSM_FFd1 AND
|
||||
<br/> ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nWE_FSB AND NOT iobs/Sent AND NOT iobs/IORW1 AND iobs/TS_FSM_FFd1 AND
|
||||
<br/> ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND NOT QoSEN AND iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd1 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND NOT QoSEN AND iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND iobs/IORW1 AND iobs/TS_FSM_FFd1 AND ASrf AND
|
||||
<br/> nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT iobs/Sent AND
|
||||
<br/> NOT QoSEN AND NOT nWE_FSB AND iobs/IORW1 AND iobs/TS_FSM_FFd1 AND ASrf AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND iobs/IORW1 AND iobs/TS_FSM_FFd2 AND ASrf AND
|
||||
<br/> nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT iobs/Sent AND
|
||||
<br/> NOT QoSEN AND NOT nWE_FSB AND iobs/IORW1 AND iobs/TS_FSM_FFd2 AND ASrf AND
|
||||
<br/> nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND NOT nWE_FSB AND iobs/IORW1 AND iobs/TS_FSM_FFd2 AND
|
||||
<br/> nADoutLE1));
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nWE_FSB AND NOT nAS_FSB AND NOT iobs/Sent AND NOT iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nWE_FSB AND NOT iobs/Sent AND NOT iobs/IORW1 AND iobs/TS_FSM_FFd2 AND
|
||||
<br/> ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nWE_FSB AND NOT nAS_FSB AND NOT iobs/Sent AND iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd1 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nWE_FSB AND NOT nAS_FSB AND NOT iobs/Sent AND iobs/IORW1 AND
|
||||
<br/> iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nWE_FSB AND NOT iobs/Sent AND iobs/IORW1 AND iobs/TS_FSM_FFd2 AND
|
||||
<br/> ASrf AND nADoutLE1));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_iobs/IOU1: FDCPE port map (iobs/IOU1,NOT nUDS_FSB,FCLK,'0','0',iobs/Load1);
|
||||
</td></tr><tr><td>
|
||||
FDCPE_iobs/Load1: FDCPE port map (iobs/Load1,iobs/Load1_D,FCLK,'0','0');
|
||||
<br/> iobs/Load1_D <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND NOT nWE_FSB AND iobs/TS_FSM_FFd1 AND nADoutLE1)
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND NOT QoSEN AND iobs/TS_FSM_FFd1 AND
|
||||
<br/> nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND NOT nWE_FSB AND iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND iobs/TS_FSM_FFd1 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT iobs/Sent AND
|
||||
<br/> NOT QoSEN AND NOT nWE_FSB AND iobs/TS_FSM_FFd1 AND ASrf AND nADoutLE1)
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND iobs/TS_FSM_FFd1 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT iobs/Sent AND iobs/TS_FSM_FFd1 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT iobs/Sent AND iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT iobs/Sent AND
|
||||
<br/> NOT QoSEN AND NOT nWE_FSB AND iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1));
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND NOT QoSEN AND iobs/TS_FSM_FFd2 AND
|
||||
<br/> nADoutLE1));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_iobs/Sent: FTCPE port map (iobs/Sent,iobs/Sent_T,FCLK,'0','0');
|
||||
<br/> iobs/Sent_T <= ((A_FSB(21) AND A_FSB(22) AND NOT nAS_FSB AND NOT iobs/Sent AND
|
||||
<br/> iobs/Sent_T <= ((A_FSB(21) AND A_FSB(22) AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND NOT QoSEN AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nWE_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nAS_FSB AND NOT iobs/Sent AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT iobs/Sent AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND NOT nAS_FSB AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND NOT nAS_FSB AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND ASrf AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND
|
||||
<br/> NOT iobs/Sent AND NOT QoSEN AND NOT nWE_FSB AND nADoutLE1)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT iobs/Sent AND
|
||||
<br/> NOT QoSEN AND NOT nWE_FSB AND ASrf AND nADoutLE1)
|
||||
<br/> OR (nAS_FSB AND iobs/Sent AND NOT ASrf)
|
||||
<br/> OR (A_FSB(23) AND NOT nAS_FSB AND NOT iobs/Sent AND
|
||||
<br/> NOT iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
@ -579,19 +629,26 @@ FDCPE_iobs/TS_FSM_FFd1: FDCPE port map (iobs/TS_FSM_FFd1,iobs/TS_FSM_FFd1_D,FCLK
|
||||
<br/> OR (iobs/TS_FSM_FFd1 AND iobs/IOACTr));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_iobs/TS_FSM_FFd2: FDCPE port map (iobs/TS_FSM_FFd2,iobs/TS_FSM_FFd2_D,FCLK,'0','0');
|
||||
<br/> iobs/TS_FSM_FFd2_D <= ((iobs/IORW1.EXP)
|
||||
<br/> OR (nAS_FSB AND NOT iobs/TS_FSM_FFd2 AND NOT ASrf AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> iobs/TS_FSM_FFd2_D <= ((NOT A_FSB(18) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(18) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(17) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(17) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(16) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(16) AND NOT A_FSB(22) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(20) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(19) AND NOT A_FSB(23) AND NOT A_FSB(22) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND nWE_FSB AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (iobs/TS_FSM_FFd1 AND NOT iobs/TS_FSM_FFd2)
|
||||
<br/> OR (iobs/TS_FSM_FFd1 AND iobs/IOACTr)
|
||||
<br/> OR (iobs/Sent AND NOT iobs/TS_FSM_FFd2 AND nADoutLE1));
|
||||
<br/> OR (iobs/Sent AND NOT iobs/TS_FSM_FFd2 AND nADoutLE1)
|
||||
<br/> OR (nAS_FSB AND NOT iobs/TS_FSM_FFd2 AND NOT ASrf AND nADoutLE1)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND NOT QoSEN AND
|
||||
<br/> NOT iobs/TS_FSM_FFd2 AND nADoutLE1));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nADoutLE0 <= (NOT ALE0M AND NOT ALE0S);
|
||||
@ -614,11 +671,11 @@ FDCPE_nAoutOE: FDCPE port map (nAoutOE,nAoutOE_D,FCLK,'0','0');
|
||||
<br/> nAoutOE_D <= (cnt/IS(1) AND cnt/IS(0) AND NOT nBR_IOBout);
|
||||
</td></tr><tr><td>
|
||||
FTCPE_nBERR_FSB: FTCPE port map (nBERR_FSB,nBERR_FSB_T,FCLK,'0','0');
|
||||
<br/> nBERR_FSB_T <= ((nAS_FSB AND NOT nBERR_FSB AND NOT ASrf)
|
||||
<br/> OR (NOT nAS_FSB AND iobs/Sent AND NOT nBERR_IOB AND nBERR_FSB AND
|
||||
<br/> nBERR_FSB_T <= ((NOT nAS_FSB AND iobs/Sent AND NOT nBERR_IOB AND nBERR_FSB AND
|
||||
<br/> iobs/IODONEr(0) AND NOT iobs/IODONEr(1))
|
||||
<br/> OR (iobs/Sent AND NOT nBERR_IOB AND nBERR_FSB AND
|
||||
<br/> iobs/IODONEr(0) AND ASrf AND NOT iobs/IODONEr(1)));
|
||||
<br/> iobs/IODONEr(0) AND ASrf AND NOT iobs/IODONEr(1))
|
||||
<br/> OR (nAS_FSB AND NOT nBERR_FSB AND NOT ASrf));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nBR_IOB_I <= '0';
|
||||
@ -636,24 +693,25 @@ FDCPE_nCAS: FDCPE port map (nCAS,nCAS_D,NOT FCLK,ram/RefCAS,nCAS_PRE);
|
||||
<br/> nCAS_PRE <= (nAS_FSB AND ram/CASEndEN);
|
||||
</td></tr><tr><td>
|
||||
FDCPE_nDTACK_FSB: FDCPE port map (nDTACK_FSB,nDTACK_FSB_D,FCLK,'0',nAS_FSB);
|
||||
<br/> nDTACK_FSB_D <= ((NOT A_FSB(22) AND NOT IONPReady AND NOT RAMReady)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23))
|
||||
<br/> nDTACK_FSB_D <= ((NOT A_FSB(22) AND nDTACK_FSB AND NOT IONPReady AND NOT RAMReady)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nDTACK_FSB)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(19) AND A_FSB(18) AND
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT iobs/Sent AND NOT IONPReady AND NOT nWE_FSB AND
|
||||
<br/> NOT nADoutLE1)
|
||||
<br/> OR (A_FSB(23) AND NOT IONPReady)
|
||||
<br/> OR (QoSEN AND NOT IONPReady)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND NOT IONPReady)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND NOT IONPReady));
|
||||
<br/> A_FSB(17) AND A_FSB(16) AND NOT nWE_FSB AND nDTACK_FSB AND NOT iobs/Sent AND
|
||||
<br/> NOT IONPReady AND NOT nADoutLE1)
|
||||
<br/> OR (A_FSB(23) AND nDTACK_FSB AND NOT IONPReady)
|
||||
<br/> OR (nDTACK_FSB AND QoSEN AND NOT IONPReady)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND nDTACK_FSB AND NOT IONPReady)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND nDTACK_FSB AND NOT IONPReady));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_nDinLE: FDCPE port map (nDinLE,nDinLE_D,NOT C16M,'0','0');
|
||||
<br/> nDinLE_D <= (NOT iobm/IOS_FSM_FFd3 AND NOT iobm/IOS_FSM_FFd4);
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nDinOE <= NOT (((A_FSB(23) AND NOT nAS_FSB AND nWE_FSB AND BACTr)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND NOT nAS_FSB AND nWE_FSB AND
|
||||
nDinOE <= NOT (((A_FSB(23) AND nWE_FSB AND NOT nAS_FSB AND BACTr)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(22) AND nWE_FSB AND NOT nAS_FSB AND
|
||||
<br/> BACTr)
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND NOT nAS_FSB AND nWE_FSB AND
|
||||
<br/> OR (A_FSB(20) AND A_FSB(22) AND nWE_FSB AND NOT nAS_FSB AND
|
||||
<br/> BACTr)));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
@ -673,17 +731,17 @@ FDCPE_nLDS_IOB: FDCPE port map (nLDS_IOB_I,nLDS_IOB,NOT C16M,'0','0');
|
||||
<br/> nLDS_IOB_OE <= NOT nAoutOE;
|
||||
</td></tr><tr><td>
|
||||
FDCPE_nOE: FDCPE port map (nOE,nOE_D,FCLK,'0',nAS_FSB);
|
||||
<br/> nOE_D <= (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT cs/Overlay AND nWE_FSB);
|
||||
<br/> nOE_D <= (NOT A_FSB(23) AND NOT A_FSB(22) AND nWE_FSB AND NOT cs/Overlay);
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nRAMLWE <= NOT ((NOT nLDS_FSB AND NOT nWE_FSB AND ram/RASEL));
|
||||
nRAMLWE <= NOT ((NOT nWE_FSB AND NOT nLDS_FSB AND ram/RASEL));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nRAMUWE <= NOT ((NOT nWE_FSB AND NOT nUDS_FSB AND ram/RASEL));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nRAS <= NOT (((ram/RASrf)
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> ram/RASEN)));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
@ -696,13 +754,13 @@ FDCPE_nRESout: FDCPE port map (nRESout,nRESout_D,FCLK,'0','0');
|
||||
<br/> OR (cnt/IS(1) AND cnt/IS(0) AND nRESout));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nROMOE <= NOT (((NOT nAS_FSB AND cs/Overlay AND nWE_FSB)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> NOT nAS_FSB AND nWE_FSB)));
|
||||
nROMOE <= NOT (((nWE_FSB AND NOT nAS_FSB AND cs/Overlay)
|
||||
<br/> OR (NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nWE_FSB AND NOT nAS_FSB)));
|
||||
</td></tr><tr><td>
|
||||
</td></tr><tr><td>
|
||||
nROMWE <= NOT ((NOT A_FSB(21) AND NOT A_FSB(20) AND A_FSB(22) AND NOT A_FSB(23) AND
|
||||
<br/> NOT nAS_FSB AND NOT nWE_FSB));
|
||||
nROMWE <= NOT ((NOT A_FSB(21) AND NOT A_FSB(20) AND NOT A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> NOT nWE_FSB AND NOT nAS_FSB));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_nUDS_IOB: FDCPE port map (nUDS_IOB_I,nUDS_IOB,NOT C16M,'0','0');
|
||||
<br/> nUDS_IOB <= ((NOT IOU0)
|
||||
@ -725,9 +783,11 @@ FTCPE_nVMA_IOB: FTCPE port map (nVMA_IOB_I,nVMA_IOB_T,NOT C8M,'0','0');
|
||||
<br/> nVMA_IOB <= nVMA_IOB_I when nVMA_IOB_OE = '1' else 'Z';
|
||||
<br/> nVMA_IOB_OE <= NOT nAoutOE;
|
||||
</td></tr><tr><td>
|
||||
FDCPE_nVPA_FSB: FDCPE port map (nVPA_FSB,nVPA_FSB_D,FCLK,'0',nAS_FSB);
|
||||
<br/> nVPA_FSB_D <= (A_FSB(21) AND A_FSB(20) AND A_FSB(22) AND A_FSB(23) AND
|
||||
<br/> IONPReady);
|
||||
FTCPE_nVPA_FSB: FTCPE port map (nVPA_FSB,nVPA_FSB_T,FCLK,'0',nAS_FSB);
|
||||
<br/> nVPA_FSB_T <= ((A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> iobs/Sent AND nVPA_FSB)
|
||||
<br/> OR (A_FSB(21) AND A_FSB(20) AND A_FSB(23) AND A_FSB(22) AND
|
||||
<br/> nVPA_FSB AND nADoutLE1));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_ram/CASEndEN: FDCPE port map (ram/CASEndEN,ram/CASEndEN_D,NOT FCLK,'0','0');
|
||||
<br/> ram/CASEndEN_D <= ((ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
@ -735,9 +795,9 @@ FDCPE_ram/CASEndEN: FDCPE port map (ram/CASEndEN,ram/CASEndEN_D,NOT FCLK,'0','0'
|
||||
</td></tr><tr><td>
|
||||
FDCPE_ram/RASEL: FDCPE port map (ram/RASEL,ram/RASEL_D,FCLK,'0','0');
|
||||
<br/> ram/RASEL_D <= ((NOT ram/RS(1) AND ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> NOT ram/RS(1) AND NOT ram/RS(2))
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT cs/Overlay AND NOT ram/RS(1) AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT cs/Overlay AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(2) AND ASrf));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_ram/RASEN: FDCPE port map (ram/RASEN,ram/RASEN_D,FCLK,'0','0');
|
||||
@ -745,9 +805,9 @@ FDCPE_ram/RASEN: FDCPE port map (ram/RASEN,ram/RASEN_D,FCLK,'0','0');
|
||||
<br/> NOT ram/RS(2))
|
||||
<br/> OR (NOT RefUrg AND NOT ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2) AND
|
||||
<br/> BACTr)
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND NOT ram/RS(1) AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT ram/RS(1) AND NOT ram/RS(0) AND
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT ram/RS(1) AND NOT ram/RS(0) AND
|
||||
<br/> NOT ram/RS(2) AND ASrf)
|
||||
<br/> OR (nAS_FSB AND NOT RefUrg AND NOT ram/RS(1) AND NOT ram/RS(0) AND
|
||||
<br/> NOT ram/RS(2) AND NOT ASrf)
|
||||
@ -762,16 +822,16 @@ FDCPE_ram/RASrf: FDCPE port map (ram/RASrf,ram/RASrf_D,NOT FCLK,'0','0');
|
||||
<br/> OR (NOT ram/RS(1) AND ram/RS(2)));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_ram/RS0: FDCPE port map (ram/RS(0),ram/RS_D(0),FCLK,'0','0');
|
||||
<br/> ram/RS_D(0) <= ((NOT A_FSB(22) AND NOT A_FSB(23) AND NOT cs/Overlay AND NOT ram/RS(0) AND
|
||||
<br/> ram/RS_D(0) <= ((nDTACK_FSB AND NOT ram/RS(1) AND ram/RS(0) AND NOT ram/RS(2) AND
|
||||
<br/> ASrf)
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> NOT ram/RS(0) AND ram/RASEN)
|
||||
<br/> OR (NOT A_FSB(23) AND NOT A_FSB(22) AND NOT cs/Overlay AND NOT ram/RS(0) AND
|
||||
<br/> ram/RASEN AND ASrf)
|
||||
<br/> OR (ram/RS(1) AND NOT ram/RS(0))
|
||||
<br/> OR (NOT ram/RS(0) AND ram/RS(2))
|
||||
<br/> OR (NOT nAS_FSB AND nDTACK_FSB AND NOT ram/RS(1) AND ram/RS(0) AND
|
||||
<br/> NOT ram/RS(2))
|
||||
<br/> OR (nDTACK_FSB AND NOT ram/RS(1) AND ram/RS(0) AND NOT ram/RS(2) AND
|
||||
<br/> ASrf)
|
||||
<br/> OR (NOT A_FSB(22) AND NOT A_FSB(23) AND NOT nAS_FSB AND NOT cs/Overlay AND
|
||||
<br/> NOT ram/RS(0) AND ram/RASEN));
|
||||
<br/> NOT ram/RS(2)));
|
||||
</td></tr><tr><td>
|
||||
FTCPE_ram/RS1: FTCPE port map (ram/RS(1),ram/RS_T(1),FCLK,'0','0');
|
||||
<br/> ram/RS_T(1) <= ((NOT ram/RS(0))
|
||||
@ -781,34 +841,34 @@ FTCPE_ram/RS1: FTCPE port map (ram/RS(1),ram/RS_T(1),FCLK,'0','0');
|
||||
FTCPE_ram/RS2: FTCPE port map (ram/RS(2),ram/RS_T(2),FCLK,'0','0');
|
||||
<br/> ram/RS_T(2) <= ((ram/RS(1) AND ram/RS(0) AND ram/RS(2))
|
||||
<br/> OR (RefUrg AND NOT ram/RefDone AND ram/RS(1) AND ram/RS(0))
|
||||
<br/> OR (A_FSB(22) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(23) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(22) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(23) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (nAS_FSB AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND NOT ASrf)
|
||||
<br/> OR (A_FSB(22) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
<br/> NOT ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2) AND NOT BACTr)
|
||||
<br/> OR (A_FSB(23) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(22) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(23) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(22) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(23) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
<br/> NOT ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2) AND NOT BACTr)
|
||||
<br/> OR (A_FSB(22) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
<br/> NOT ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2) AND NOT BACTr));
|
||||
</td></tr><tr><td>
|
||||
FDCPE_ram/RefCAS: FDCPE port map (ram/RefCAS,ram/RefCAS_D,FCLK,'0','0');
|
||||
<br/> ram/RefCAS_D <= ((A_FSB(22) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(23) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
<br/> ram/RefCAS_D <= ((A_FSB(23) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
<br/> NOT ram/RS(1) AND NOT ram/RS(0) AND NOT ram/RS(2) AND NOT BACTr)
|
||||
<br/> OR (A_FSB(23) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (A_FSB(22) AND RefReq AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND ASrf AND NOT BACTr)
|
||||
<br/> OR (RefUrg AND NOT ram/RefDone AND ram/RS(1) AND ram/RS(0) AND
|
||||
<br/> NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(22) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(23) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (A_FSB(22) AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2))
|
||||
<br/> OR (nAS_FSB AND RefUrg AND NOT ram/RefDone AND NOT ram/RS(1) AND
|
||||
<br/> NOT ram/RS(0) AND NOT ram/RS(2) AND NOT ASrf)
|
||||
<br/> OR (A_FSB(22) AND NOT nAS_FSB AND RefReq AND NOT ram/RefDone AND
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,57 +16,57 @@
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB1');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB1</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">24 / 54</td>
|
||||
<td align="center">29 / 90</td>
|
||||
<td align="center">23 / 54</td>
|
||||
<td align="center">33 / 90</td>
|
||||
<td align="center">10 / 11</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB2');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB2</a></td>
|
||||
<td align="center">7 / 18</td>
|
||||
<td align="center">7 / 54</td>
|
||||
<td align="center">7 / 90</td>
|
||||
<td align="center">11 / 18</td>
|
||||
<td align="center">10 / 54</td>
|
||||
<td align="center">11 / 90</td>
|
||||
<td align="center">8 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB3');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB3</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">38 / 54</td>
|
||||
<td align="center">51 / 90</td>
|
||||
<td align="center">36 / 54</td>
|
||||
<td align="center">34 / 90</td>
|
||||
<td align="center">9 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB4');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB4</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">34 / 54</td>
|
||||
<td align="center">32 / 90</td>
|
||||
<td align="center">39 / 54</td>
|
||||
<td align="center">48 / 90</td>
|
||||
<td align="center">10 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB5');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB5</a></td>
|
||||
<td align="center">17 / 18</td>
|
||||
<td align="center">38 / 54</td>
|
||||
<td align="center">78 / 90</td>
|
||||
<td align="center">14 / 18</td>
|
||||
<td align="center">37 / 54</td>
|
||||
<td align="center">84 / 90</td>
|
||||
<td align="center">8 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB6');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB6</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">36 / 54</td>
|
||||
<td align="center">60 / 90</td>
|
||||
<td align="center">35 / 54</td>
|
||||
<td align="center">59 / 90</td>
|
||||
<td align="center">10 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB7');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB7</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">37 / 54</td>
|
||||
<td align="center">45 / 90</td>
|
||||
<td align="center">38 / 54</td>
|
||||
<td align="center">48 / 90</td>
|
||||
<td align="center">10 / 10</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="javascript:showFBDetail('FB8');" onmouseover="window.status='goto Function Block detail'; return true;" onmouseout="window.status=''">FB8</a></td>
|
||||
<td align="center">18 / 18</td>
|
||||
<td align="center">33 / 54</td>
|
||||
<td align="center">71 / 90</td>
|
||||
<td align="center">34 / 54</td>
|
||||
<td align="center">74 / 90</td>
|
||||
<td align="center">6 / 10</td>
|
||||
</tr>
|
||||
</table></span><form><span class="pgRef"><table width="90%" align="center"><tr>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd1</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/TimerTick</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a>
|
||||
</td>
|
||||
@ -38,7 +38,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOREQr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOREQr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntEr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<1></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a>
|
||||
</td>
|
||||
@ -49,7 +49,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<13>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmEr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/Er</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<3></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a>
|
||||
</td>
|
||||
@ -60,7 +60,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<14>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmC8Mr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/C8Mr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<2></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a>
|
||||
</td>
|
||||
@ -71,7 +71,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntnRESr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nRESr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_5_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_1</a>
|
||||
</td>
|
||||
@ -82,9 +82,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<15>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/TimerTick</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_6_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRefDone_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RefDone</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_6_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_1</a> <a href="Javascript:showPT('FB1_6_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC6</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -93,9 +93,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<16>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntEr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<1></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOU1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOU1</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB1_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC7</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -104,9 +104,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOL1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOL1</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a> <a href="Javascript:showPT('FB1_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC8</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -115,9 +115,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<17>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<2></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB1_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC9</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -126,7 +126,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<18>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRefDone_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RefDone</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<0></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB1_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a>
|
||||
</td>
|
||||
@ -137,7 +137,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRASrf_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RASrf</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<7></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB1_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a>
|
||||
</td>
|
||||
@ -148,7 +148,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<19>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<2></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<4></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a> <a href="Javascript:showPT('FB1_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a>
|
||||
</td>
|
||||
@ -159,7 +159,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<20>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<0></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<3></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB1_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a>
|
||||
</td>
|
||||
@ -170,7 +170,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<7></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<2></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB1_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB1_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a>
|
||||
</td>
|
||||
@ -228,10 +228,9 @@
|
||||
<div id="tipBox"></div>
|
||||
<br><span id="fbsiguse" class="pgRef"><b>Signals Used By Logic in Function Block</b><br><ol>
|
||||
<li>C8M</li>
|
||||
<li>E</li>
|
||||
<li><a href="Javascript:showEqn('IOREQ')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOREQ</a></li>
|
||||
<li>nRES.PIN</li>
|
||||
<li><a href="Javascript:showEqn('RefReq')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RefReq</a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntEr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<0></a></li>
|
||||
@ -246,9 +245,9 @@
|
||||
<li><a href="Javascript:showEqn('cntTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntTimer3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Timer<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/TimerTick</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd2</a></li>
|
||||
<li><a href="Javascript:showEqn('ramRS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<0></a></li>
|
||||
<li><a href="Javascript:showEqn('ramRS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<1></a></li>
|
||||
<li><a href="Javascript:showEqn('iobsLoad1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Load1</a></li>
|
||||
<li>nLDS_FSB</li>
|
||||
<li>nUDS_FSB</li>
|
||||
<li><a href="Javascript:showEqn('ramRS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<2></a></li>
|
||||
<li><a href="Javascript:showEqn('ramRefDone_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RefDone</a></li>
|
||||
</ol></span><form><span class="pgRef"><table width="90%" align="center"><tr>
|
||||
|
@ -97,47 +97,51 @@
|
||||
<td align="center" width="10%"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONEr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONEr<1></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC8</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td width="8%" align="center">I/O/GTS1</td>
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<6>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONEr<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC9</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td width="8%" align="center">I/O/GTS2</td>
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<7>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmVPAr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/VPAr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC10</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd5</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC11</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%">6</td>
|
||||
<td width="8%" align="center">I/O</td>
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<8>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONErf_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONErf</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd4</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a>
|
||||
</td>
|
||||
@ -148,7 +152,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<9>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONEr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONEr<1></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd1</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a>
|
||||
</td>
|
||||
@ -159,7 +163,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONEr<0></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOREQr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOREQr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a>
|
||||
</td>
|
||||
@ -170,7 +174,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<10>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOACTr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOACTr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmEr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/Er</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_15_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_1</a>
|
||||
</td>
|
||||
@ -181,7 +185,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<11>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmVPAr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/VPAr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmC8Mr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/C8Mr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a>
|
||||
</td>
|
||||
@ -192,7 +196,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd5</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntnRESr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nRESr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a>
|
||||
</td>
|
||||
@ -203,7 +207,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<12>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd4</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/Er<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB2_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a>
|
||||
</td>
|
||||
@ -216,8 +220,11 @@
|
||||
</table></span></div>
|
||||
<div id="tipBox"></div>
|
||||
<br><span id="fbsiguse" class="pgRef"><b>Signals Used By Logic in Function Block</b><br><ol>
|
||||
<li><a href="Javascript:showEqn('IOACT')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOACT</a></li>
|
||||
<li><a href="Javascript:showEqn('IODONE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IODONE</a></li>
|
||||
<li>C8M</li>
|
||||
<li>E</li>
|
||||
<li><a href="Javascript:showEqn('IOREQ')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOREQ</a></li>
|
||||
<li>nRES.PIN</li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd2</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd5</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd6</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIODONEr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONEr<0></a></li>
|
||||
|
@ -27,9 +27,9 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<0></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIODONErf_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IODONErf</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('VCC')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''"></a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC1</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -38,7 +38,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ASrf')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ASrf</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOACTr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOACTr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a>
|
||||
</td>
|
||||
@ -49,7 +49,7 @@
|
||||
<td align="center" width="10%">GCK/I</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ALE0S')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ALE0S</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsClear1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Clear1</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a>
|
||||
</td>
|
||||
@ -60,9 +60,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<6></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB3_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimerTick</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC4</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -71,9 +71,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<5></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_5_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_1</a> <a href="Javascript:showPT('FB3_5_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<0></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_5_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_1</a> <a href="Javascript:showPT('VCC')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''"></a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC5</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -82,9 +82,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<23>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<4></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_6_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_1</a> <a href="Javascript:showPT('FB3_6_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('BACTr')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">BACTr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_6_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC6</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -93,9 +93,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'E'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<3></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB3_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ASrf')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ASrf</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC7</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -104,9 +104,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<2></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a> <a href="Javascript:showPT('FB3_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ALE0S')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ALE0S</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC8</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -117,7 +117,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nDTACK_FSB')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nDTACK_FSB</a></td>
|
||||
<td align="center" width="10%">8</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a> <a href="Javascript:showPT('FB3_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB3_8_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_4</a> <a href="Javascript:showPT('FB3_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB3_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a> <a href="Javascript:showPT('FB3_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB3_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a> <a href="Javascript:showPT('FB3_9_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_5</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a> <a href="Javascript:showPT('FB3_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a> <a href="Javascript:showPT('FB3_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB3_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB3_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a> <a href="Javascript:showPT('FB3_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB3_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a> <a href="Javascript:showPT('FB3_9_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC9</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -126,7 +126,7 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<1></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsTS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd1</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB3_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a>
|
||||
</td>
|
||||
@ -137,7 +137,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntClockGateEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/ClockGateEN</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer9_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<9></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB3_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a>
|
||||
</td>
|
||||
@ -148,7 +148,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'nWE_FSB'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('QoSEN')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">QoSEN</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer8_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<8></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a> <a href="Javascript:showPT('FB3_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a>
|
||||
</td>
|
||||
@ -159,9 +159,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'nLDS_FSB'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IORW')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IORW</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB3_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a> <a href="Javascript:showPT('FB3_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<6></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB3_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC13</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -170,9 +170,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<3></a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB3_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a> <a href="Javascript:showPT('FB3_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a> <a href="Javascript:showPT('FB3_14_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_4</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<5></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB3_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC14</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -181,9 +181,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'nAS_FSB'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<1></a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_15_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_1</a> <a href="Javascript:showPT('FB3_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a> <a href="Javascript:showPT('FB3_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB3_15_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_4</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer11_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<11></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_15_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_1</a> <a href="Javascript:showPT('FB3_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC15</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -192,9 +192,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'nUDS_FSB'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<2></a></td>
|
||||
<td align="center" width="10%">5</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB3_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB3_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB3_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a> <a href="Javascript:showPT('FB3_16_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_5</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer10_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<10></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB3_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC16</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -214,9 +214,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<0></a></td>
|
||||
<td align="center" width="10%">7</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB3_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB3_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB3_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB3_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a> <a href="Javascript:showPT('FB3_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a> <a href="Javascript:showPT('FB3_18_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_5</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IORW')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IORW</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB3_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB3_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB3_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC18</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -236,34 +236,32 @@
|
||||
<li>A_FSB<21></li>
|
||||
<li>A_FSB<22></li>
|
||||
<li>A_FSB<23></li>
|
||||
<li><a href="Javascript:showEqn('IOACT')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOACT</a></li>
|
||||
<li><a href="Javascript:showEqn('IODONE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IODONE</a></li>
|
||||
<li><a href="Javascript:showEqn('IONPReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IONPReady</a></li>
|
||||
<li><a href="Javascript:showEqn('QoSEN')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">QoSEN</a></li>
|
||||
<li><a href="Javascript:showEqn('RAMReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RAMReady</a></li>
|
||||
<li><a href="Javascript:showEqn('cntClockGateEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/ClockGateEN</a></li>
|
||||
<li><a href="Javascript:showEqn('cntIACKCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACKCSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntIWMCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IWMCSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer10_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<10></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer11_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<11></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<4></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<5></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntSCCCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCCCSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntSCSICSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCSICSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntSndCSWRr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SndCSWRr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<6></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<7></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer8_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<8></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer9_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<9></a></li>
|
||||
<li><a href="Javascript:showEqn('cntTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/TimerTick</a></li>
|
||||
<li><a href="Javascript:showEqn('cntVIACSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/VIACSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntnRESr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nRESr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIOACTr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOACTr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIORW1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IORW1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsSent_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Sent</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsTS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsTS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd2</a></li>
|
||||
<li><a href="Javascript:showEqn('nADoutLE1')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nADoutLE1</a></li>
|
||||
<li>nAS_FSB</li>
|
||||
<li><a href="Javascript:showEqn('nDTACK_FSB')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nDTACK_FSB</a></li>
|
||||
<li>nWE_FSB</li>
|
||||
</ol></span><form><span class="pgRef"><table width="90%" align="center"><tr>
|
||||
<td align="left"><input type="button" onclick="javascript:parent.leftnav.showTop()" onmouseover="window.status='goto top of page'; return true;" onmouseout="window.status=''" value="back to top"></td>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimerTick</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<1></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a>
|
||||
</td>
|
||||
@ -49,9 +49,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<3></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nRESout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nRESout</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB4_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC3</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -60,9 +60,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<2></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nBR_IOBout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nBR_IOBout</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB4_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC4</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -93,9 +93,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntC8Mr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<1></a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<1></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB4_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC7</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -115,7 +115,7 @@
|
||||
<td align="center" width="10%">I/O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nRESout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nRESout</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<1></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB4_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a>
|
||||
</td>
|
||||
@ -126,7 +126,7 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'nIPL2'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nBR_IOBout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nBR_IOBout</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('QoSEN')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">QoSEN</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB4_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a>
|
||||
</td>
|
||||
@ -138,8 +138,8 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nVPA_FSB')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nVPA_FSB</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB4_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB4_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a> <a href="Javascript:showPT('FB4_11_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC11</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -148,9 +148,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer9_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<9></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a> <a href="Javascript:showPT('FB4_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntnPOR_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nPOR</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a> <a href="Javascript:showPT('FB4_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a> <a href="Javascript:showPT('FB4_12_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC12</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -159,9 +159,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<1>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer8_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<8></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB4_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<0></a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB4_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a> <a href="Javascript:showPT('FB4_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC13</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -170,9 +170,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer11_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<11></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB4_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntClockGateEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/ClockGateEN</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB4_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a> <a href="Javascript:showPT('FB4_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC14</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -181,9 +181,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<2>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntLTimer10_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<10></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_15_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_1</a> <a href="Javascript:showPT('FB4_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<3></a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_15_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_1</a> <a href="Javascript:showPT('FB4_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a> <a href="Javascript:showPT('FB4_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB4_15_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_4</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC15</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -192,9 +192,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<3>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<1></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB4_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<1></a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB4_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB4_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB4_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC16</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -203,9 +203,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntnPOR_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nPOR</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB4_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB4_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<2></a></td>
|
||||
<td align="center" width="10%">5</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB4_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB4_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB4_17_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_4</a> <a href="Javascript:showPT('FB4_17_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC17</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -214,9 +214,9 @@
|
||||
<td align="center" width="10%"><a href="#" onmouseover="this._tip = 'A_FSB<4>'; window.status='Input Signal'; return true;" onmouseout="window.status=''" class="tipBoxCursor">I</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<0></a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB4_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB4_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntQS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<0></a></td>
|
||||
<td align="center" width="10%">6</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB4_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB4_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB4_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a> <a href="Javascript:showPT('FB4_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a> <a href="Javascript:showPT('FB4_18_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_5</a> <a href="Javascript:showPT('FB4_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC18</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -227,39 +227,44 @@
|
||||
</table></span></div>
|
||||
<div id="tipBox"></div>
|
||||
<br><span id="fbsiguse" class="pgRef"><b>Signals Used By Logic in Function Block</b><br><ol>
|
||||
<li><a href="Javascript:showEqn('ASrf')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ASrf</a></li>
|
||||
<li>A_FSB<20></li>
|
||||
<li>A_FSB<21></li>
|
||||
<li><a href="Javascript:showEqn('BACTr')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">BACTr</a></li>
|
||||
<li>A_FSB<22></li>
|
||||
<li>A_FSB<23></li>
|
||||
<li><a href="Javascript:showEqn('IONPReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IONPReady</a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntC8Mr3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/C8Mr<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntClockGateEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/ClockGateEN</a></li>
|
||||
<li><a href="Javascript:showEqn('cntIACK0CSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACK0CSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntIACK1CSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACK1CSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntIS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntIS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IS<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntIWMCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IWMCSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer10_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<10></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer11_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<11></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<4></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<5></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<6></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<7></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer8_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<8></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimer9_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimer<9></a></li>
|
||||
<li><a href="Javascript:showEqn('cntLTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/LTimerTick</a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<0></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<1></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<2></a></li>
|
||||
<li><a href="Javascript:showEqn('cntQS3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/QS<3></a></li>
|
||||
<li><a href="Javascript:showEqn('cntSCCCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCCCSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntSCSICSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCSICSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntSndCSWRr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SndCSWRr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntTimerTick_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/TimerTick</a></li>
|
||||
<li><a href="Javascript:showEqn('cntVIACSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/VIACSr</a></li>
|
||||
<li><a href="Javascript:showEqn('cntnPOR_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nPOR</a></li>
|
||||
<li><a href="Javascript:showEqn('cntnRESr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/nRESr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmDoutOE_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/DoutOE</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsSent_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Sent</a></li>
|
||||
<li><a href="Javascript:showEqn('nADoutLE1')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nADoutLE1</a></li>
|
||||
<li>nAS_FSB</li>
|
||||
<li><a href="Javascript:showEqn('nAoutOE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nAoutOE</a></li>
|
||||
<li><a href="Javascript:showEqn('nBR_IOBout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nBR_IOBout</a></li>
|
||||
<li>nIPL2</li>
|
||||
<li><a href="Javascript:showEqn('nRESout')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nRESout</a></li>
|
||||
<li><a href="Javascript:showEqn('nVPA_FSB')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nVPA_FSB</a></li>
|
||||
<li>nWE_FSB</li>
|
||||
</ol></span><form><span class="pgRef"><table width="90%" align="center"><tr>
|
||||
<td align="left"><input type="button" onclick="javascript:parent.leftnav.showTop()" onmouseover="window.status='goto top of page'; return true;" onmouseout="window.status=''" value="back to top"></td>
|
||||
|
@ -27,12 +27,11 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IOREQ')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOREQ</a></td>
|
||||
<td align="center" width="10%">12</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a> <a href="Javascript:showPT('FB5_18_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_5</a> <a href="Javascript:showPT('FB5_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('FB5_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a> <a href="Javascript:showPT('FB5_1_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_3</a> <a href="Javascript:showPT('FB5_1_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_4</a> <a href="Javascript:showPT('FB5_1_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_5</a> <a href="Javascript:showPT('FB5_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a> <a href="Javascript:showPT('FB5_2_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_2</a> <a href="Javascript:showPT('FB5_2_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_3</a> <a href="Javascript:showPT('FB5_2_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_4</a> <a href="Javascript:showPT('FB5_2_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%">MC1</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
@ -40,7 +39,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nROMOE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nROMOE</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_3_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_3</a> <a href="Javascript:showPT('FB5_3_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_4</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a> <a href="Javascript:showPT('FB5_2_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC2</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -49,9 +48,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIACKCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACKCSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB5_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IOREQ')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IOREQ</a></td>
|
||||
<td align="center" width="10%">12</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_2_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_3</a> <a href="Javascript:showPT('FB5_2_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_4</a> <a href="Javascript:showPT('FB5_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB5_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a> <a href="Javascript:showPT('FB5_3_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_3</a> <a href="Javascript:showPT('FB5_3_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_4</a> <a href="Javascript:showPT('FB5_3_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_5</a> <a href="Javascript:showPT('FB5_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB5_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a> <a href="Javascript:showPT('FB5_4_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_3</a> <a href="Javascript:showPT('FB5_4_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_4</a> <a href="Javascript:showPT('FB5_4_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC3</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -60,12 +59,11 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRASEL_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RASEL</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB5_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a> <a href="Javascript:showPT('FB5_4_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%">MC4</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
@ -93,9 +91,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('csOverlay_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cs/Overlay</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB5_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a> <a href="Javascript:showPT('FB5_7_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_3</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIORW1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IORW1</a></td>
|
||||
<td align="center" width="10%">12</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_6_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_3</a> <a href="Javascript:showPT('FB5_6_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">6_4</a> <a href="Javascript:showPT('FB5_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB5_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a> <a href="Javascript:showPT('FB5_7_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_3</a> <a href="Javascript:showPT('FB5_7_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_4</a> <a href="Javascript:showPT('FB5_7_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_5</a> <a href="Javascript:showPT('FB5_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a> <a href="Javascript:showPT('FB5_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a> <a href="Javascript:showPT('FB5_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB5_8_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_4</a> <a href="Javascript:showPT('FB5_8_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC7</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -104,12 +102,11 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsLoad1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Load1</a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a> <a href="Javascript:showPT('FB5_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a> <a href="Javascript:showPT('FB5_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB5_8_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_4</a>
|
||||
</td>
|
||||
<td align="center" width="10%">(unused)</td>
|
||||
<td align="center" width="10%">0</td>
|
||||
<td align="center" width="30%"> </td>
|
||||
<td align="center" width="10%">MC8</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
<td align="center" width="10%"> </td>
|
||||
<td align="center" width="10%">39</td>
|
||||
<td width="8%" align="center">I/O</td>
|
||||
<td align="center" width="10%">(b)</td>
|
||||
@ -126,9 +123,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSndCSWRr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SndCSWRr</a></td>
|
||||
<td align="center" width="10%">8</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB5_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a> <a href="Javascript:showPT('FB5_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a> <a href="Javascript:showPT('FB5_10_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_4</a> <a href="Javascript:showPT('FB5_10_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_5</a> <a href="Javascript:showPT('FB5_11_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_3</a> <a href="Javascript:showPT('FB5_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB5_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsTS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd2</a></td>
|
||||
<td align="center" width="10%">12</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB5_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a> <a href="Javascript:showPT('FB5_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a> <a href="Javascript:showPT('FB5_10_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_4</a> <a href="Javascript:showPT('FB5_10_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_5</a> <a href="Javascript:showPT('FB5_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a> <a href="Javascript:showPT('FB5_11_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_3</a> <a href="Javascript:showPT('FB5_11_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_4</a> <a href="Javascript:showPT('FB5_11_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_5</a> <a href="Javascript:showPT('FB5_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB5_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a> <a href="Javascript:showPT('FB5_9_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC10</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -139,7 +136,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('RA3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RA<3></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB5_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB5_12_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC11</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -159,9 +156,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsSent_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Sent</a></td>
|
||||
<td align="center" width="10%">11</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_12_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_3</a> <a href="Javascript:showPT('FB5_12_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_4</a> <a href="Javascript:showPT('FB5_12_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_5</a> <a href="Javascript:showPT('FB5_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB5_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a> <a href="Javascript:showPT('FB5_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a> <a href="Javascript:showPT('FB5_13_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_4</a> <a href="Javascript:showPT('FB5_13_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_5</a> <a href="Javascript:showPT('FB5_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a> <a href="Javascript:showPT('FB5_14_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_4</a> <a href="Javascript:showPT('FB5_14_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_5</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSndCSWRr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SndCSWRr</a></td>
|
||||
<td align="center" width="10%">8</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB5_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a> <a href="Javascript:showPT('FB5_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a> <a href="Javascript:showPT('FB5_13_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_4</a> <a href="Javascript:showPT('FB5_13_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_5</a> <a href="Javascript:showPT('FB5_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a> <a href="Javascript:showPT('FB5_14_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_4</a> <a href="Javascript:showPT('FB5_14_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC13</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -192,9 +189,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIORW1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IORW1</a></td>
|
||||
<td align="center" width="10%">4</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB5_15_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_4</a> <a href="Javascript:showPT('FB5_15_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_5</a> <a href="Javascript:showPT('FB5_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsLoad1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Load1</a></td>
|
||||
<td align="center" width="10%">8</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB5_15_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_4</a> <a href="Javascript:showPT('FB5_15_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_5</a> <a href="Javascript:showPT('FB5_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB5_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB5_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB5_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a> <a href="Javascript:showPT('FB5_16_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC16</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -213,9 +210,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsTS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd2</a></td>
|
||||
<td align="center" width="10%">12</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB5_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB5_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a> <a href="Javascript:showPT('FB5_16_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_5</a> <a href="Javascript:showPT('FB5_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB5_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB5_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB5_17_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_4</a> <a href="Javascript:showPT('FB5_17_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_5</a> <a href="Javascript:showPT('FB5_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB5_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB5_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsSent_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Sent</a></td>
|
||||
<td align="center" width="10%">13</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB5_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB5_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB5_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB5_17_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_4</a> <a href="Javascript:showPT('FB5_17_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_5</a> <a href="Javascript:showPT('FB5_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB5_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB5_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a> <a href="Javascript:showPT('FB5_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a> <a href="Javascript:showPT('FB5_18_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_5</a> <a href="Javascript:showPT('FB5_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('FB5_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a> <a href="Javascript:showPT('FB5_1_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC18</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -247,7 +244,6 @@
|
||||
<li>A_FSB<9></li>
|
||||
<li>A_FSB<22></li>
|
||||
<li>A_FSB<23></li>
|
||||
<li>nRES.PIN</li>
|
||||
<li><a href="Javascript:showEqn('QoSEN')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">QoSEN</a></li>
|
||||
<li><a href="Javascript:showEqn('csOverlay_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cs/Overlay</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIOACTr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOACTr</a></li>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsClear1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Clear1</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd6</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB6_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a>
|
||||
</td>
|
||||
@ -49,9 +49,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsTS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd1</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB6_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB6_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd2</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB6_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC3</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -60,7 +60,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOU1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOU1</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd7</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB6_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB6_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a>
|
||||
</td>
|
||||
@ -71,7 +71,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobsIOL1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOL1</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd3</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB6_5_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_1</a> <a href="Javascript:showPT('FB6_5_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">5_2</a>
|
||||
</td>
|
||||
@ -243,6 +243,7 @@
|
||||
<li><a href="Javascript:showEqn('iobmES3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/ES<3></a></li>
|
||||
<li><a href="Javascript:showEqn('iobmEr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/Er</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOREQr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOREQr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd3</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd4_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd4</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd5_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd5</a></li>
|
||||
@ -250,12 +251,10 @@
|
||||
<li><a href="Javascript:showEqn('iobmIOS_FSM_FFd7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd7</a></li>
|
||||
<li><a href="Javascript:showEqn('iobmVPAr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/VPAr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsClear1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Clear1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIOACTr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOACTr</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIOL1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOL1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsIOU1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/IOU1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsLoad1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/Load1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsTS_FSM_FFd1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd1</a></li>
|
||||
<li><a href="Javascript:showEqn('iobsTS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobs/TS_FSM_FFd2</a></li>
|
||||
<li><a href="Javascript:showEqn('nADoutLE1')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nADoutLE1</a></li>
|
||||
<li><a href="Javascript:showEqn('nAoutOE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nAoutOE</a></li>
|
||||
<li>nBERR_IOB</li>
|
||||
|
@ -27,9 +27,9 @@
|
||||
<th width="10%">Pin Use</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd6_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd6</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntVIACSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/VIACSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('FB7_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC1</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -49,9 +49,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd2</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSCSICSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCSICSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB7_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC3</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -60,9 +60,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('BACTr')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">BACTr</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIWMCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IWMCSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB7_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC4</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -93,7 +93,7 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd7_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd7</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIACK1CSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACK1CSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB7_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a>
|
||||
</td>
|
||||
@ -126,7 +126,7 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('iobmIOS_FSM_FFd3_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">iobm/IOS_FSM_FFd3</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIACK0CSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IACK0CSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB7_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB7_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a>
|
||||
</td>
|
||||
@ -235,6 +235,7 @@
|
||||
<li>A_FSB<17></li>
|
||||
<li>A_FSB<18></li>
|
||||
<li>A_FSB<1></li>
|
||||
<li>A_FSB<20></li>
|
||||
<li>A_FSB<21></li>
|
||||
<li>A_FSB<2></li>
|
||||
<li>A_FSB<6></li>
|
||||
|
@ -29,7 +29,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('RAMReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RAMReady</a></td>
|
||||
<td align="center" width="10%">10</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('FB8_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a> <a href="Javascript:showPT('FB8_1_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_3</a> <a href="Javascript:showPT('FB8_1_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_4</a> <a href="Javascript:showPT('FB8_1_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_5</a> <a href="Javascript:showPT('FB8_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a> <a href="Javascript:showPT('FB8_2_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_2</a> <a href="Javascript:showPT('FB8_2_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_3</a> <a href="Javascript:showPT('FB8_2_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_4</a> <a href="Javascript:showPT('FB8_2_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_5</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB8_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a> <a href="Javascript:showPT('FB8_1_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_1</a> <a href="Javascript:showPT('FB8_1_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_2</a> <a href="Javascript:showPT('FB8_1_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_3</a> <a href="Javascript:showPT('FB8_1_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_4</a> <a href="Javascript:showPT('FB8_1_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">1_5</a> <a href="Javascript:showPT('FB8_2_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_3</a> <a href="Javascript:showPT('FB8_2_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_4</a> <a href="Javascript:showPT('FB8_2_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC1</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -40,7 +40,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('RA11_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RA<11></a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_3_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_3</a> <a href="Javascript:showPT('FB8_3_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_4</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_2_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_1</a> <a href="Javascript:showPT('FB8_2_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">2_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC2</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -49,7 +49,7 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntVIACSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/VIACSr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramCASEndEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/CASEndEN</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_3_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_1</a> <a href="Javascript:showPT('FB8_3_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">3_2</a>
|
||||
</td>
|
||||
@ -60,7 +60,7 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSCSICSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCSICSr</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSCCCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCCCSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_4_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_1</a> <a href="Javascript:showPT('FB8_4_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">4_2</a>
|
||||
</td>
|
||||
@ -93,9 +93,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntSCCCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/SCCCSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB8_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<1></a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_7_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_1</a> <a href="Javascript:showPT('FB8_7_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_2</a> <a href="Javascript:showPT('FB8_7_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC7</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -106,7 +106,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nRAMUWE')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nRAMUWE</a></td>
|
||||
<td align="center" width="10%">1</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_7_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">7_4</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC8</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -117,7 +117,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRS2_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<2></a></td>
|
||||
<td align="center" width="10%">9</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a> <a href="Javascript:showPT('FB8_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB8_8_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_4</a> <a href="Javascript:showPT('FB8_8_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_5</a> <a href="Javascript:showPT('FB8_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB8_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a> <a href="Javascript:showPT('FB8_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB8_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a> <a href="Javascript:showPT('FB8_9_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_5</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_8_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_1</a> <a href="Javascript:showPT('FB8_8_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_2</a> <a href="Javascript:showPT('FB8_8_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_3</a> <a href="Javascript:showPT('FB8_8_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_4</a> <a href="Javascript:showPT('FB8_8_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">8_5</a> <a href="Javascript:showPT('FB8_9_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_1</a> <a href="Javascript:showPT('FB8_9_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_2</a> <a href="Javascript:showPT('FB8_9_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_3</a> <a href="Javascript:showPT('FB8_9_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_4</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC9</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -126,9 +126,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRS1_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<1></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('csOverlay_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cs/Overlay</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB8_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a> <a href="Javascript:showPT('FB8_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_10_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_1</a> <a href="Javascript:showPT('FB8_10_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_2</a> <a href="Javascript:showPT('FB8_9_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">9_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC10</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -137,9 +137,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IONPReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IONPReady</a></td>
|
||||
<td align="center" width="10%">5</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB8_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a> <a href="Javascript:showPT('FB8_11_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_3</a> <a href="Javascript:showPT('FB8_11_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_4</a> <a href="Javascript:showPT('FB8_11_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_5</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<0></a></td>
|
||||
<td align="center" width="10%">6</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_10_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_3</a> <a href="Javascript:showPT('FB8_10_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_4</a> <a href="Javascript:showPT('FB8_10_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">10_5</a> <a href="Javascript:showPT('FB8_11_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_1</a> <a href="Javascript:showPT('FB8_11_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_2</a> <a href="Javascript:showPT('FB8_11_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC11</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -150,7 +150,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('nBERR_FSB')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">nBERR_FSB</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a> <a href="Javascript:showPT('FB8_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a> <a href="Javascript:showPT('FB8_12_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_3</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_11_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_4</a> <a href="Javascript:showPT('FB8_11_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">11_5</a> <a href="Javascript:showPT('FB8_12_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_1</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC12</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -159,9 +159,9 @@
|
||||
<td align="center" width="10%">O</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRS0_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RS<0></a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('IONPReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IONPReady</a></td>
|
||||
<td align="center" width="10%">6</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_12_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_4</a> <a href="Javascript:showPT('FB8_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB8_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a> <a href="Javascript:showPT('FB8_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a> <a href="Javascript:showPT('FB8_13_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_4</a> <a href="Javascript:showPT('FB8_13_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_5</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_12_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_2</a> <a href="Javascript:showPT('FB8_12_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_3</a> <a href="Javascript:showPT('FB8_12_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_4</a> <a href="Javascript:showPT('FB8_12_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">12_5</a> <a href="Javascript:showPT('FB8_13_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_1</a> <a href="Javascript:showPT('FB8_13_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC13</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -172,7 +172,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRefCAS_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RefCAS</a></td>
|
||||
<td align="center" width="10%">8</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB8_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a> <a href="Javascript:showPT('FB8_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a> <a href="Javascript:showPT('FB8_14_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_4</a> <a href="Javascript:showPT('FB8_14_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_5</a> <a href="Javascript:showPT('FB8_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a> <a href="Javascript:showPT('FB8_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB8_15_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_4</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_13_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_3</a> <a href="Javascript:showPT('FB8_13_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_4</a> <a href="Javascript:showPT('FB8_13_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">13_5</a> <a href="Javascript:showPT('FB8_14_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_1</a> <a href="Javascript:showPT('FB8_14_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_2</a> <a href="Javascript:showPT('FB8_14_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_3</a> <a href="Javascript:showPT('FB8_14_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_4</a> <a href="Javascript:showPT('FB8_14_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">14_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC14</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -194,7 +194,7 @@
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRASEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RASEN</a></td>
|
||||
<td align="center" width="10%">10</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB8_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB8_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB8_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a> <a href="Javascript:showPT('FB8_16_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_5</a> <a href="Javascript:showPT('FB8_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB8_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a> <a href="Javascript:showPT('FB8_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB8_17_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_4</a> <a href="Javascript:showPT('FB8_17_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_5</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_15_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_2</a> <a href="Javascript:showPT('FB8_15_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">15_3</a> <a href="Javascript:showPT('FB8_16_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_1</a> <a href="Javascript:showPT('FB8_16_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_2</a> <a href="Javascript:showPT('FB8_16_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_3</a> <a href="Javascript:showPT('FB8_16_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_4</a> <a href="Javascript:showPT('FB8_16_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">16_5</a> <a href="Javascript:showPT('FB8_17_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_3</a> <a href="Javascript:showPT('FB8_17_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_4</a> <a href="Javascript:showPT('FB8_17_5')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_5</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC16</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -203,9 +203,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramCASEndEN_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/CASEndEN</a></td>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRASrf_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RASrf</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a> <a href="Javascript:showPT('FB8_18_4')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_4</a>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_17_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_1</a> <a href="Javascript:showPT('FB8_17_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">17_2</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC17</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -214,9 +214,9 @@
|
||||
<td align="center" width="10%">(b)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('cntIWMCSr_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">cnt/IWMCSr</a></td>
|
||||
<td align="center" width="10%">2</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB8_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a>
|
||||
<td align="center" width="10%"><a href="Javascript:showEqn('ramRASEL_SPECSIG')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">ram/RASEL</a></td>
|
||||
<td align="center" width="10%">3</td>
|
||||
<td align="center" width="30%"> <a href="Javascript:showPT('FB8_18_1')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_1</a> <a href="Javascript:showPT('FB8_18_2')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_2</a> <a href="Javascript:showPT('FB8_18_3')" onmouseover="window.status='show Pterm'; return true;" onmouseout="window.status=''">18_3</a>
|
||||
</td>
|
||||
<td align="center" width="10%">MC18</td>
|
||||
<td align="center" width="10%">STD</td>
|
||||
@ -238,6 +238,7 @@
|
||||
<li>A_FSB<22></li>
|
||||
<li>A_FSB<23></li>
|
||||
<li><a href="Javascript:showEqn('IONPReady')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">IONPReady</a></li>
|
||||
<li>nRES.PIN</li>
|
||||
<li><a href="Javascript:showEqn('QoSEN')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">QoSEN</a></li>
|
||||
<li><a href="Javascript:showEqn('RefReq')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RefReq</a></li>
|
||||
<li><a href="Javascript:showEqn('RefUrg')" onmouseover="window.status='show Equation'; return true;" onmouseout="window.status=''">RefUrg</a></li>
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -30,7 +30,7 @@
|
||||
<tr>
|
||||
<td width="40%"> <b>Date</b>
|
||||
</td>
|
||||
<td width="60%"> 10-14-2024, 0:50AM</td>
|
||||
<td width="60%"> 10-15-2024, 3:20AM</td>
|
||||
</tr>
|
||||
</table></span><br><span id="sumres" class="pgRef"><h5 align="center">RESOURCES SUMMARY</h5>
|
||||
<table align="center" width="90%" border="1" cellspacing="0" cellpadding="0">
|
||||
@ -42,11 +42,11 @@
|
||||
<th width="20%">Function Block Inputs Used</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%" align="center">132/144 (92%)</td>
|
||||
<td width="20%" align="center">373/720 (52%)</td>
|
||||
<td width="20%" align="center">108/144 (75%)</td>
|
||||
<td width="20%" align="center">133/144 (93%)</td>
|
||||
<td width="20%" align="center">391/720 (55%)</td>
|
||||
<td width="20%" align="center">109/144 (76%)</td>
|
||||
<td width="20%" align="center">73/81 (91%)</td>
|
||||
<td width="20%" align="center">247/432 (58%)</td>
|
||||
<td width="20%" align="center">252/432 (59%)</td>
|
||||
</tr>
|
||||
</table></span><br><span id="pinres" class="pgRef"><h5 align="center">PIN RESOURCES</h5>
|
||||
<table align="center" width="90%" border="0" cellspacing="0" cellpadding="0"><tr>
|
||||
@ -133,7 +133,7 @@
|
||||
<table align="center" width="90%" border="1" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="50%"> Macrocells in high performance mode (MCHP)</td>
|
||||
<td width="50%"> 132</td>
|
||||
<td width="50%"> 133</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%"> Macrocells in low power mode (MCLP)</td>
|
||||
@ -141,7 +141,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%"> Total macrocells used (MC)</td>
|
||||
<td width="50%"> 132</td>
|
||||
<td width="50%"> 133</td>
|
||||
</tr>
|
||||
</table></span><form><span class="pgRef"><table width="90%" align="center"><tr>
|
||||
<td align="left"><input type="button" onclick="javascript:parent.leftnav.showTop()" onmouseover="window.status='goto top of page'; return true;" onmouseout="window.status=''" value="back to top"></td>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@
|
||||
The structure and the elements are likely to change over the next few releases.
|
||||
This means code written to parse this file will need to be revisited each subsequent release.-->
|
||||
|
||||
<application stringID="NgdBuild" timeStamp="Mon Oct 14 00:50:25 2024">
|
||||
<application stringID="NgdBuild" timeStamp="Tue Oct 15 03:20:19 2024">
|
||||
<section stringID="User_Env">
|
||||
<table stringID="User_EnvVar">
|
||||
<column stringID="variable"/>
|
||||
@ -66,34 +66,35 @@
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_INFOS" value="0"/>
|
||||
</section>
|
||||
<section stringID="NGDBUILD_PRE_UNISIM_SUMMARY">
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND2" value="211"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND2" value="214"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND3" value="26"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND4" value="13"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND5" value="3"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FD" value="66"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND5" value="4"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FD" value="67"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FDCE" value="37"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FDCP" value="1"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FDP" value="4"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_GND" value="6"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FDP" value="2"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_FDPE" value="2"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_GND" value="7"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_IBUF" value="35"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_INV" value="276"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_INV" value="272"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OBUF" value="31"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR2" value="108"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR2" value="110"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR3" value="10"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR4" value="4"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR5" value="1"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_XOR2" value="21"/>
|
||||
</section>
|
||||
<section stringID="NGDBUILD_POST_UNISIM_SUMMARY">
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND2" value="211"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND2" value="214"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND3" value="26"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND4" value="13"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND5" value="3"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_AND5" value="4"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_GND" value="76"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_IBUF" value="43"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_INV" value="276"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_INV" value="272"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OBUF" value="31"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR2" value="108"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR2" value="110"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR3" value="10"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR4" value="4"/>
|
||||
<item dataType="int" stringID="NGDBUILD_NUM_OR5" value="1"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
Release 8.1i - Fit P.20131013
|
||||
Copyright(c) 1995-2003 Xilinx Inc. All rights reserved
|
||||
|
||||
10-14-2024 0:50AM
|
||||
10-15-2024 3:20AM
|
||||
|
||||
NOTE: This file is designed to be imported into a spreadsheet program
|
||||
such as Microsoft Excel for viewing, printing and sorting. The comma ','
|
||||
|
|
@ -2,7 +2,7 @@
|
||||
<BODY TEXT='#000000' BGCOLOR='#FFFFFF' LINK='#0000EE' VLINK='#551A8B' ALINK='#FF0000'>
|
||||
<TABLE BORDER CELLSPACING=0 CELLPADDING=3 WIDTH='100%'>
|
||||
<TR ALIGN=CENTER BGCOLOR='#99CCFF'>
|
||||
<TD ALIGN=CENTER COLSPAN='4'><B>WarpSE Project Status (10/14/2024 - 00:52:14)</B></TD></TR>
|
||||
<TD ALIGN=CENTER COLSPAN='4'><B>WarpSE Project Status (10/15/2024 - 03:21:17)</B></TD></TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Project File:</B></TD>
|
||||
<TD>WarpSE.xise</TD>
|
||||
@ -25,7 +25,7 @@ No Errors</TD>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Product Version:</B></TD><TD>ISE 14.7</TD>
|
||||
<TD BGCOLOR='#FFFF99'><UL><LI><B>Warnings:</B></LI></UL></TD>
|
||||
<TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/*.xmsgs?&DataKey=Warning'>21 Warnings (0 new)</A></TD>
|
||||
<TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/*.xmsgs?&DataKey=Warning'>5 Warnings (0 new)</A></TD>
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Design Goal:</B></dif></TD>
|
||||
@ -65,9 +65,9 @@ System Settings</A>
|
||||
<TR ALIGN=CENTER BGCOLOR='#99CCFF'><TD ALIGN=CENTER COLSPAN='6'><B>Detailed Reports</B></TD><TD ALIGN=RIGHT WIDTH='10%'COLSPAN=1> <A HREF_DISABLED="?&ExpandedTable=DetailedReports"><B>[-]</B></a></TD></TR>
|
||||
<TR BGCOLOR='#FFFF99'><TD><B>Report Name</B></TD><TD><B>Status</B></TD><TD><B>Generated</B></TD>
|
||||
<TD ALIGN=LEFT><B>Errors</B></TD><TD ALIGN=LEFT><B>Warnings</B></TD><TD ALIGN=LEFT COLSPAN='2'><B>Infos</B></TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.syr'>Synthesis Report</A></TD><TD>Current</TD><TD>Mon Oct 14 00:50:20 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/xst.xmsgs?&DataKey=Warning'>21 Warnings (0 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.bld'>Translation Report</A></TD><TD>Current</TD><TD>Mon Oct 14 00:50:25 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.rpt'>CPLD Fitter Report (Text)</A></TD><TD>Current</TD><TD>Mon Oct 14 00:50:40 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Warning'>8 Warnings (8 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Info'>3 Infos (3 new)</A></TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.syr'>Synthesis Report</A></TD><TD>Current</TD><TD>Tue Oct 15 03:20:14 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/xst.xmsgs?&DataKey=Warning'>5 Warnings (0 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.bld'>Translation Report</A></TD><TD>Current</TD><TD>Tue Oct 15 03:20:19 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\WarpSE.rpt'>CPLD Fitter Report (Text)</A></TD><TD>Current</TD><TD>Tue Oct 15 03:20:33 2024</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Warning'>8 Warnings (1 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'><A HREF_DISABLED='C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Info'>3 Infos (3 new)</A></TD></TR>
|
||||
<TR ALIGN=LEFT><TD>Power Report</TD><TD> </TD><TD> </TD><TD> </TD><TD> </TD><TD COLSPAN='2'> </TD></TR>
|
||||
</TABLE>
|
||||
<BR><TABLE BORDER CELLSPACING=0 CELLPADDING=3 WIDTH='100%'>
|
||||
@ -77,5 +77,5 @@ System Settings</A>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<br><center><b>Date Generated:</b> 10/14/2024 - 00:52:14</center>
|
||||
<br><center><b>Date Generated:</b> 10/15/2024 - 03:21:17</center>
|
||||
</BODY></HTML>
|
@ -5,7 +5,7 @@
|
||||
The structure and the elements are likely to change over the next few releases.
|
||||
This means code written to parse this file will need to be revisited each subsequent release.-->
|
||||
|
||||
<application stringID="Xst" timeStamp="Mon Oct 14 00:50:15 2024">
|
||||
<application stringID="Xst" timeStamp="Tue Oct 15 03:20:09 2024">
|
||||
<section stringID="User_Env">
|
||||
<table stringID="User_EnvVar">
|
||||
<column stringID="variable"/>
|
||||
@ -82,8 +82,8 @@
|
||||
<item dataType="int" stringID="XST_COUNTERS" value="3">
|
||||
<item dataType="int" stringID="XST_4BIT_UP_COUNTER" value="2"/>
|
||||
</item>
|
||||
<item dataType="int" stringID="XST_REGISTERS" value="72">
|
||||
<item dataType="int" stringID="XST_1BIT_REGISTER" value="68"/>
|
||||
<item dataType="int" stringID="XST_REGISTERS" value="73">
|
||||
<item dataType="int" stringID="XST_1BIT_REGISTER" value="69"/>
|
||||
<item dataType="int" stringID="XST_2BIT_REGISTER" value="2"/>
|
||||
<item dataType="int" stringID="XST_3BIT_REGISTER" value="1"/>
|
||||
<item dataType="int" stringID="XST_4BIT_REGISTER" value="1"/>
|
||||
@ -101,8 +101,8 @@
|
||||
<item dataType="int" stringID="XST_COUNTERS" value="3">
|
||||
<item dataType="int" stringID="XST_4BIT_UP_COUNTER" value="2"/>
|
||||
</item>
|
||||
<item dataType="int" stringID="XST_REGISTERS" value="51">
|
||||
<item dataType="int" stringID="XST_FLIPFLOPS" value="51"/>
|
||||
<item dataType="int" stringID="XST_REGISTERS" value="52">
|
||||
<item dataType="int" stringID="XST_FLIPFLOPS" value="52"/>
|
||||
</item>
|
||||
</section>
|
||||
<section stringID="XST_PARTITION_REPORT">
|
||||
@ -122,19 +122,20 @@
|
||||
<item stringID="XST_IOS" value="80"/>
|
||||
</section>
|
||||
<section stringID="XST_CELL_USAGE">
|
||||
<item dataType="int" stringID="XST_BELS" value="683">
|
||||
<item dataType="int" stringID="XST_AND2" value="211"/>
|
||||
<item dataType="int" stringID="XST_BELS" value="685">
|
||||
<item dataType="int" stringID="XST_AND2" value="214"/>
|
||||
<item dataType="int" stringID="XST_AND3" value="26"/>
|
||||
<item dataType="int" stringID="XST_AND4" value="13"/>
|
||||
<item dataType="int" stringID="XST_GND" value="6"/>
|
||||
<item dataType="int" stringID="XST_INV" value="276"/>
|
||||
<item dataType="int" stringID="XST_OR2" value="108"/>
|
||||
<item dataType="int" stringID="XST_GND" value="7"/>
|
||||
<item dataType="int" stringID="XST_INV" value="272"/>
|
||||
<item dataType="int" stringID="XST_OR2" value="110"/>
|
||||
<item dataType="int" stringID="XST_XOR2" value="21"/>
|
||||
</item>
|
||||
<item dataType="int" stringID="XST_FLIPFLOPSLATCHES" value="108">
|
||||
<item dataType="int" stringID="XST_FD" value="66"/>
|
||||
<item dataType="int" stringID="XST_FLIPFLOPSLATCHES" value="109">
|
||||
<item dataType="int" stringID="XST_FD" value="67"/>
|
||||
<item dataType="int" stringID="XST_FDCE" value="37"/>
|
||||
<item dataType="int" stringID="XST_FDP" value="4"/>
|
||||
<item dataType="int" stringID="XST_FDP" value="2"/>
|
||||
<item dataType="int" stringID="XST_FDPE" value="2"/>
|
||||
</item>
|
||||
<item dataType="int" stringID="XST_IO_BUFFERS" value="73">
|
||||
<item dataType="int" stringID="XST_IBUF" value="35"/>
|
||||
@ -144,7 +145,7 @@
|
||||
</section>
|
||||
<section stringID="XST_ERRORS_STATISTICS">
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_ERRORS" value="0"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_WARNINGS" value="21"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_WARNINGS" value="5"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_INFOS" value="0"/>
|
||||
</section>
|
||||
</application>
|
||||
|
@ -1,6 +1,6 @@
|
||||
iMPACT Version: Oct 13 2013 10:22:21
|
||||
|
||||
iMPACT log file Started on Mon Oct 14 00:48:06 2024
|
||||
iMPACT log file Started on Tue Oct 15 03:22:45 2024
|
||||
|
||||
Preference Table
|
||||
Name Setting
|
||||
@ -46,4 +46,4 @@ done.
|
||||
'1': Verifying device...'1': Verification failed'1': Verification terminated
|
||||
'1': Putting device in ISP mode...done.
|
||||
'1': Programming of user selected options failed.
|
||||
Elapsed time = 4 sec.
|
||||
Elapsed time = 3 sec.
|
||||
|
@ -1,2 +1,2 @@
|
||||
C:\Users\GWolf\Documents\GitHub\WarpSE\cpld\XC95144XL\WarpSE.ngc 1728881420
|
||||
C:\Users\GWolf\Documents\GitHub\WarpSE\cpld\XC95144XL\WarpSE.ngc 1728976814
|
||||
OK
|
||||
|
@ -17,25 +17,25 @@
|
||||
<msg type="info" file="Cpld" num="0" delta="new" >Inferring BUFG constraint for signal '<arg fmt="%s" index="1">FCLK</arg>' based upon the LOC constraint '<arg fmt="%s" index="2">P27</arg>'. It is recommended that you declare this BUFG explicitedly in your design. Note that for certain device families the output of a BUFG constraint can not drive a gated clock, and the BUFG constraint will be ignored.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<0></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<0></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<1></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<1></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<2></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<2></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<3></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<3></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<4></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<4></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<5></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">DBG<5></arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Cpld" num="1007" delta="new" >Removing unused input(s) '<arg fmt="%s" index="1">nBG_IOB</arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
<msg type="warning" file="Cpld" num="1007" delta="old" >Removing unused input(s) '<arg fmt="%s" index="1">nBG_IOB</arg>'. The input(s) are unused after optimization. Please verify functionality via simulation.
|
||||
</msg>
|
||||
|
||||
</messages>
|
||||
|
@ -8,5 +8,8 @@
|
||||
<!-- Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved. -->
|
||||
|
||||
<messages>
|
||||
<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/CNT.v" into library work</arg>
|
||||
</msg>
|
||||
|
||||
</messages>
|
||||
|
||||
|
@ -5,33 +5,12 @@
|
||||
behavior or data corruption. It is strongly advised that
|
||||
users do not edit the contents of this file. -->
|
||||
<messages>
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">A<7:3></arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="646" delta="old" >Signal <<arg fmt="%s" index="1">IOS0</arg>> is assigned but never used. This unconnected signal will be trimmed during the optimization process.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowSCC</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowInterval</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowIACK</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowIWM</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowSnd</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowSCSI</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowVIA</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">SlowClockGate</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="647" delta="old" >Input <<arg fmt="%s" index="1">nBG_IOB</arg>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
|
||||
</msg>
|
||||
|
||||
@ -41,32 +20,5 @@
|
||||
<msg type="warning" file="Xst" num="646" delta="old" >Signal <<arg fmt="%s" index="1">nPOR</arg>> is assigned but never used. This unconnected signal will be trimmed during the optimization process.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowVIA</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowSnd</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowSCSI</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowSCC</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowInterval</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0000</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowIWM</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowIACK</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="653" delta="old" >Signal <<arg fmt="%s" index="1">SlowClockGate</arg>> is used but never assigned. This sourceless signal will be automatically connected to value <arg fmt="%s" index="2">0</arg>.
|
||||
</msg>
|
||||
|
||||
<msg type="warning" file="Xst" num="646" delta="old" >Signal <<arg fmt="%s" index="1">SetCSWR</arg>> is assigned but never used. This unconnected signal will be trimmed during the optimization process.
|
||||
</msg>
|
||||
|
||||
</messages>
|
||||
|
||||
|
@ -79,12 +79,12 @@
|
||||
<ClosedNode>User Constraints</ClosedNode>
|
||||
</ClosedNodes>
|
||||
<SelectedItems>
|
||||
<SelectedItem></SelectedItem>
|
||||
<SelectedItem/>
|
||||
</SelectedItems>
|
||||
<ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
|
||||
<ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000001000000000000000000000000000000000000000000000000f8000000010000000100000000000000000000000064ffffffff000000810000000000000001000000f80000000100000000</ViewHeaderState>
|
||||
<UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
|
||||
<CurrentItem></CurrentItem>
|
||||
<CurrentItem/>
|
||||
</ItemView>
|
||||
</Project>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<report-views version="2.0" >
|
||||
<header>
|
||||
<DateModified>2024-10-14T00:50:11</DateModified>
|
||||
<DateModified>2024-10-15T01:37:46</DateModified>
|
||||
<ModuleName>WarpSE</ModuleName>
|
||||
<SummaryTimeStamp>2024-10-14T00:50:00</SummaryTimeStamp>
|
||||
<SavedFilePath>C:/Users/GWolf/Documents/GitHub/WarpSE/cpld/XC95144XL/iseconfig/WarpSE.xreport</SavedFilePath>
|
||||
|
@ -17,7 +17,7 @@
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Project ID (random number)</B></TD>
|
||||
<TD><xtag-property name="RandomID">b3a7c111c3094ca7bbfba225dd37199f</xtag-property>.<xtag-property name="ProjectID">652813a7f8294c5392491199014270cf</xtag-property>.<xtag-property name="ProjectIteration">1</xtag-property></TD>
|
||||
<TD><xtag-property name="RandomID">b3a7c111c3094ca7bbfba225dd37199f</xtag-property>.<xtag-property name="ProjectID">b97df439da144c9c84715588b0c01a2c</xtag-property>.<xtag-property name="ProjectIteration">1</xtag-property></TD>
|
||||
<TD BGCOLOR='#FFFF99'><B>Target Package:</B></TD>
|
||||
<TD><xtag-property name="TargetPackage"></xtag-property></TD>
|
||||
</TR>
|
||||
@ -29,7 +29,7 @@
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Date Generated</B></TD>
|
||||
<TD><xtag-property name="Date Generated">2024-10-14T00:52:57</xtag-property></TD>
|
||||
<TD><xtag-property name="Date Generated">2024-10-15T03:23:29</xtag-property></TD>
|
||||
<TD BGCOLOR='#FFFF99'><B>Tool Flow</B></TD>
|
||||
<TD><xtag-property name="ToolFlow">IMPACT</xtag-property></TD>
|
||||
</TR>
|
||||
|
@ -3,7 +3,7 @@ Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
|
||||
|
||||
Project Information
|
||||
--------------------
|
||||
ProjectID=652813a7f8294c5392491199014270cf
|
||||
ProjectID=b97df439da144c9c84715588b0c01a2c
|
||||
ProjectIteration=1
|
||||
|
||||
WebTalk Summary
|
||||
|
@ -3,9 +3,9 @@
|
||||
<!--The data in this file is primarily intended for consumption by Xilinx tools.
|
||||
The structure and the elements are likely to change over the next few releases.
|
||||
This means code written to parse this file will need to be revisited each subsequent release.-->
|
||||
<application name="impact" timeStamp="Mon Oct 14 00:52:57 2024">
|
||||
<application name="impact" timeStamp="Tue Oct 15 03:23:29 2024">
|
||||
<section name="Project Information" visible="false">
|
||||
<property name="ProjectID" value="652813a7f8294c5392491199014270cf"/>
|
||||
<property name="ProjectID" value="b97df439da144c9c84715588b0c01a2c"/>
|
||||
<property name="ProjectIteration" value="1"/>
|
||||
</section>
|
||||
<section name="iMPACT Project Info" visible="true">
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!--The data in this file is primarily intended for consumption by Xilinx tools.
|
||||
The structure and the elements are likely to change over the next few releases.
|
||||
This means code written to parse this file will need to be revisited each subsequent release.-->
|
||||
<application name="pn" timeStamp="Mon Oct 14 00:50:14 2024">
|
||||
<application name="pn" timeStamp="Tue Oct 15 03:20:08 2024">
|
||||
<section name="Project Information" visible="false">
|
||||
<property name="ProjectID" value="B70E14F6F6B943E9BF9FD5113EA04D70" type="project"/>
|
||||
<property name="ProjectIteration" value="0" type="project"/>
|
||||
|
Binary file not shown.
@ -1,8 +1,8 @@
|
||||
MO CNT NULL ../CNT.v vlg65/_c_n_t.bin 1728881415
|
||||
MO CS NULL ../CS.v vlg22/_c_s.bin 1728881415
|
||||
MO FSB NULL ../FSB.v vlg37/_f_s_b.bin 1728881415
|
||||
MO IOBM NULL ../IOBM.v vlg73/_i_o_b_m.bin 1728881415
|
||||
MO WarpSE NULL ../WarpSE.v vlg52/_warp_s_e.bin 1728881415
|
||||
MO IOBS NULL ../IOBS.v vlg79/_i_o_b_s.bin 1728881415
|
||||
MO RAM NULL ../RAM.v vlg14/_r_a_m.bin 1728881415
|
||||
MO CNT NULL ../CNT.v vlg65/_c_n_t.bin 1728976809
|
||||
MO CS NULL ../CS.v vlg22/_c_s.bin 1728976809
|
||||
MO FSB NULL ../FSB.v vlg37/_f_s_b.bin 1728976809
|
||||
MO IOBM NULL ../IOBM.v vlg73/_i_o_b_m.bin 1728976809
|
||||
MO WarpSE NULL ../WarpSE.v vlg52/_warp_s_e.bin 1728976809
|
||||
MO IOBS NULL ../IOBS.v vlg79/_i_o_b_s.bin 1728976809
|
||||
MO RAM NULL ../RAM.v vlg14/_r_a_m.bin 1728976809
|
||||
MO SET NULL ../SET.v vlg48/_s_e_t.bin 1728880919
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user