mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2025-02-26 22:29:12 +00:00
Better
This commit is contained in:
parent
fb6b6debcc
commit
a2fc4dc4de
19
cpld/CNT.v
19
cpld/CNT.v
@ -49,8 +49,8 @@ module CNT(
|
||||
*/
|
||||
assign RefUrgent = Timer[6];
|
||||
always @(posedge C8M) begin
|
||||
if (Timer[3]) RefREQ <= 1;
|
||||
else if (TimerTC) RefREQ <= 0;
|
||||
if (Timer[3]) RefReq <= 1;
|
||||
else if (TimerTC) RefReq <= 0;
|
||||
end
|
||||
|
||||
/* LBACTr - LBACT synchronized to C16M clock domain */
|
||||
@ -59,7 +59,6 @@ module CNT(
|
||||
|
||||
/* BERR generation in C8M clock domain */
|
||||
reg BERRArm = 0;
|
||||
reg BERRTimeout = 0;
|
||||
always @(posedge C8M) begin
|
||||
if (LBACTr && TimerTC) begin
|
||||
BERRArm <= 1;
|
||||
@ -72,17 +71,21 @@ module CNT(
|
||||
|
||||
/* Long timer counts from 0 to 16384 -- 16385 states == 202.888 ms */
|
||||
reg [14:0] LTimer; // Long timer
|
||||
wire LTimerTC <= LTimer[14];
|
||||
wire LTimerTC = LTimer[14];
|
||||
always @(posedge C8M) begin
|
||||
if (LTimerTC) LTimer <= 0;
|
||||
else LTimer <= LTimer+1;
|
||||
end
|
||||
|
||||
|
||||
/* IPL2 synchronizer */
|
||||
reg IPL2r;
|
||||
always @(posedge C8M) IPL2r <= !nIPL2;
|
||||
|
||||
/* Startup sequence control */
|
||||
reg [1:0] PORS = 0;
|
||||
reg Disable = 0;
|
||||
reg BR_IOB = 0; assign nBR_IOB <= !BR_IOB;
|
||||
assign nAoutOE <= !AoutOE;
|
||||
reg BR_IOB = 0; assign nBR_IOB = !BR_IOB;
|
||||
assign nAoutOE = !AoutOE;
|
||||
always @(posedge C8M) begin
|
||||
case (PORS)
|
||||
0: begin
|
||||
@ -93,7 +96,7 @@ module CNT(
|
||||
end 1: begin
|
||||
AoutOE <= 0; // Tristate PDS address and control
|
||||
nRESout <= 0; // Hold reset low
|
||||
Disable <= Disable | !nIPL2; // No need to synchronize /IPL2
|
||||
Disable <= Disable | IPL2r;
|
||||
if (!IPL2r && LTimerTC) begin
|
||||
BR_IOB <= !Disable;
|
||||
PORS <= 2;
|
||||
|
23
cpld/FSB.v
23
cpld/FSB.v
@ -5,8 +5,8 @@ module FSB(
|
||||
output BACT, output LBACT,
|
||||
/* Ready inputs */
|
||||
input Ready0, input Ready1, input Ready2,
|
||||
/* BERR inputs */
|
||||
input BERR0, input BERR1,
|
||||
/* BERR input from IOB slave port */
|
||||
input IOBS_BERR,
|
||||
/* Interrupt acknowledge select */
|
||||
input IACS);
|
||||
|
||||
@ -17,7 +17,6 @@ module FSB(
|
||||
|
||||
/* LBACT - "Long BACT" */
|
||||
reg [1:0] BACTCnt = 0;
|
||||
reg LBACT;
|
||||
always @(posedge FCLK) begin
|
||||
if (!BACT) begin
|
||||
BACTCnt <= 0;
|
||||
@ -46,21 +45,7 @@ module FSB(
|
||||
end
|
||||
|
||||
/* BERR generation */
|
||||
reg BERR0r, BERR1r;
|
||||
always @(posedge FCLK) BERR0r <= BERR0;
|
||||
always @(posedge FCLK) BERR1r <= BERR1;
|
||||
reg BERREN = 0;
|
||||
reg BERRCNT = 0;
|
||||
always @(posedge FCLK) begin
|
||||
if (~BACT) begin
|
||||
BERREN <= 0;
|
||||
BERRCNT <= 0;
|
||||
end else begin
|
||||
BERRCNT <= BERRCNT+1;
|
||||
BERREN <= BERRCNT==3'b111;
|
||||
end
|
||||
end
|
||||
assign nBERR = ~(~nAS && BERREN && (BERR0r || BERR1r));
|
||||
assign nBERR = ~(~nAS && IOBS_BERR);
|
||||
|
||||
/* DTACK/VPA control */
|
||||
reg VPA;
|
||||
@ -69,7 +54,7 @@ module FSB(
|
||||
if (~BACT) begin
|
||||
nDTACK <= 1;
|
||||
VPA <= 0;
|
||||
end else if (Ready && ~BERR) begin
|
||||
end else if (Ready) begin
|
||||
nDTACK <= IACS;
|
||||
VPA <= IACS;
|
||||
end
|
||||
|
@ -107,8 +107,8 @@ module IOBM(
|
||||
end
|
||||
|
||||
/* PDS address and data latch control */
|
||||
always @(negedge C16M) begin nDinLE <= IOS==4 || IOS==5; end
|
||||
reg DoutOE = 0; assign nDoutOE <= !(AoutOE && DoutOE);
|
||||
always @(negedge C16M) begin nDinLE = IOS==4 || IOS==5; end
|
||||
reg DoutOE = 0; assign nDoutOE = !(AoutOE && DoutOE);
|
||||
always @(posedge C16M) begin
|
||||
DoutOE <= IOWE && (IOS==1 || IOS==2 || IOS==3 ||
|
||||
IOS==4 || IOS==5 || IOS==6);
|
||||
|
@ -4,7 +4,7 @@ module IOBS(
|
||||
/* AS cycle detection */
|
||||
input BACT,
|
||||
/* Select and ready signals */
|
||||
input IOCS, input IOPWCS, output Ready, output reg BERR,
|
||||
input IOCS, input IOPWCS, output IOBS_Ready, output reg IOBS_BERR,
|
||||
/* Read data OE control */
|
||||
output nDinOE,
|
||||
/* IOB Master Controller Interface */
|
||||
@ -109,9 +109,9 @@ module IOBS(
|
||||
BERR <= 0;
|
||||
end else if (Once && (PS==0 || PS==1) && ~IOACTr && IOPWReady) begin
|
||||
IOReady <= ~IOBERR;
|
||||
BERR <= IOBERR;
|
||||
IOBS_BERR <= IOBERR;
|
||||
end
|
||||
end
|
||||
assign Ready = ~IOCS || IOReady || (IOPWCS && IOPWReady);
|
||||
assign IOBS_Ready = ~IOCS || IOReady || (IOPWCS && IOPWReady);
|
||||
|
||||
endmodule
|
||||
|
@ -80,7 +80,7 @@ module WarpSE(
|
||||
RA[11:0], nRAS, nCAS,
|
||||
nRAMLWE, nRAMUWE, nOE, nROMCS, nROMWE);
|
||||
|
||||
wire Ready_IOBS, BERR_IOBS;
|
||||
wire IOBS_Ready, IOBS_BERR;
|
||||
wire IOREQ, IOACT, IOBERR;
|
||||
wire ALE0S, ALE0M, ALE1;
|
||||
assign nADoutLE0 = ~(ALE0S || ALE0M);
|
||||
@ -92,7 +92,7 @@ module WarpSE(
|
||||
/* AS cycle detection, FSB BERR */
|
||||
BACT,
|
||||
/* Select and ready signals */
|
||||
IOCS, IOPWCS, Ready_IOBS, BERR_IOBS,
|
||||
IOCS, IOPWCS, IOBS_Ready, IOBS_BERR,
|
||||
/* Read data OE control */
|
||||
nDinOE,
|
||||
/* IOB Master Controller Interface */
|
||||
@ -102,11 +102,12 @@ module WarpSE(
|
||||
/* FIFO secondary level control */
|
||||
ALE1);
|
||||
|
||||
wire AoutOE;
|
||||
wire nAS_IOBout, nLDS_IOBout, nUDS_IOBout, nVMA_IOBout;
|
||||
assign nAS_IOB = nAoutOE ? 1'bZ : nAS_IOBout;
|
||||
assign nLDS_IOB = nAoutOE ? 1'bZ : nLDS_IOBout;
|
||||
assign nUDS_IOB = nAoutOE ? 1'bZ : nUDS_IOBout;
|
||||
assign nVMA_IOB = nAoutOE ? 1'bZ : nVMA_IOBout;
|
||||
assign nAS_IOB = AoutOE ? 1'bZ : nAS_IOBout;
|
||||
assign nLDS_IOB = AoutOE ? 1'bZ : nLDS_IOBout;
|
||||
assign nUDS_IOB = AoutOE ? 1'bZ : nUDS_IOBout;
|
||||
assign nVMA_IOB = AoutOE ? 1'bZ : nVMA_IOBout;
|
||||
IOBM iobm(
|
||||
/* PDS interface */
|
||||
CLK2X_IOB, CLK_IOB, E_IOB,
|
||||
@ -119,7 +120,6 @@ module WarpSE(
|
||||
IOREQ, IOL0, IOU0, IORW0);
|
||||
|
||||
wire BERRTimeout;
|
||||
wire AoutOE;
|
||||
CNT cnt(
|
||||
/* C8M clock */
|
||||
C8M,
|
||||
@ -142,9 +142,9 @@ module WarpSE(
|
||||
/* AS cycle detection */
|
||||
BACT, LBACT,
|
||||
/* Ready and IA inputs */
|
||||
Ready_RAM, Ready_IOBS, (!SndRAMCSWR || QoSReady),
|
||||
/* BERR inputs */
|
||||
(~IOCS && BERRTimeout), BERR_IOBS,
|
||||
Ready_RAM, IOBS_Ready, (!SndRAMCSWR || QoSReady),
|
||||
/* IOB slabe port BERR input */
|
||||
IOBS_BERR,
|
||||
/* Interrupt acknowledge select */
|
||||
IACS);
|
||||
|
||||
|
@ -25,3 +25,11 @@ taengine -intstyle ise -f WarpSE -w --format html1 -l WarpSE_html/tim/timing_rep
|
||||
xst -intstyle ise -ifn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "Z:/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
xst -intstyle ise -ifn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xst" -ofn "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.syr"
|
||||
|
@ -78,7 +78,7 @@
|
||||
<status xil_pn:value="SuccessfullyRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
</transform>
|
||||
<transform xil_pn:end_ts="1662236554" xil_pn:in_ck="5474524715461797957" xil_pn:name="TRANEXT_xstsynthesize_xc9500xl" xil_pn:prop_ck="1233756204182495024" xil_pn:start_ts="1662236533">
|
||||
<transform xil_pn:end_ts="1679288302" xil_pn:in_ck="5474524715461797957" xil_pn:name="TRANEXT_xstsynthesize_xc9500xl" xil_pn:prop_ck="1233756204182495024" xil_pn:start_ts="1679288299">
|
||||
<status xil_pn:value="FailedRun"/>
|
||||
<status xil_pn:value="ReadyToRun"/>
|
||||
<status xil_pn:value="OutOfDateForInputs"/>
|
||||
|
@ -1,16 +1,16 @@
|
||||
Release 14.7 - xst P.20131013 (nt)
|
||||
Release 14.7 - xst P.20131013 (nt64)
|
||||
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
|
||||
--> Parameter TMPDIR set to xst/projnav.tmp
|
||||
|
||||
|
||||
Total REAL time to Xst completion: 1.00 secs
|
||||
Total CPU time to Xst completion: 0.97 secs
|
||||
Total REAL time to Xst completion: 0.00 secs
|
||||
Total CPU time to Xst completion: 0.09 secs
|
||||
|
||||
--> Parameter xsthdpdir set to xst
|
||||
|
||||
|
||||
Total REAL time to Xst completion: 1.00 secs
|
||||
Total CPU time to Xst completion: 0.98 secs
|
||||
Total REAL time to Xst completion: 0.00 secs
|
||||
Total CPU time to Xst completion: 0.09 secs
|
||||
|
||||
--> Reading design: WarpSE.prj
|
||||
|
||||
@ -76,36 +76,43 @@ wysiwyg : NO
|
||||
* HDL Compilation *
|
||||
=========================================================================
|
||||
Compiling verilog file "../RAM.v" in library work
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 63 'BACTr' has not been declared
|
||||
ERROR:HDLCompilers:26 - "../RAM.v" line 69 unexpected token: ';'
|
||||
ERROR:HDLCompilers:26 - "../RAM.v" line 75 unexpected token: 'begin'
|
||||
ERROR:HDLCompilers:26 - "../RAM.v" line 76 expecting ';', found ')'
|
||||
ERROR:HDLCompilers:26 - "../RAM.v" line 76 unexpected token: '<='
|
||||
Module <RAM> compiled
|
||||
ERROR:HDLCompilers:26 - "../RAM.v" line 76 expecting 'endmodule', found '0'
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 38 'BACTr' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 96 'RefFromRS0Next' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 100 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 101 'RefFromRS0Pre' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 107 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 113 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 118 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 124 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 132 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 139 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 146 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 153 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 160 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 167 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 176 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 184 'RAMDIS1' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../RAM.v" line 190 'RAMDIS1' has not been declared
|
||||
Compiling verilog file "../IOBS.v" in library work
|
||||
Module <RAM> compiled
|
||||
Compiling verilog file "../IOBM.v" in library work
|
||||
Module <IOBS> compiled
|
||||
Compiling verilog file "../FSB.v" in library work
|
||||
Module <IOBM> compiled
|
||||
ERROR:HDLCompilers:28 - "../FSB.v" line 59 'BERR' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../FSB.v" line 71 'BERR' has not been declared
|
||||
Compiling verilog file "../CS.v" in library work
|
||||
Module <FSB> compiled
|
||||
Compiling verilog file "../CNT.v" in library work
|
||||
Module <CS> compiled
|
||||
ERROR:HDLCompilers:28 - "../CNT.v" line 29 'RefREQ' has not been declared
|
||||
ERROR:HDLCompilers:28 - "../CNT.v" line 30 'RefREQ' has not been declared
|
||||
ERROR:HDLCompilers:26 - "../CNT.v" line 34 expecting ';', found '='
|
||||
Module <CNT> compiled
|
||||
ERROR:HDLCompilers:26 - "../CNT.v" line 34 expecting 'endmodule', found '0'
|
||||
Compiling verilog file "../WarpSE.v" in library work
|
||||
Module <CNT> compiled
|
||||
Module <WarpSE> compiled
|
||||
Analysis of file <"WarpSE.prj"> failed.
|
||||
-->
|
||||
|
||||
Total memory usage is 190552 kilobytes
|
||||
Total memory usage is 232068 kilobytes
|
||||
|
||||
Number of errors : 11 ( 0 filtered)
|
||||
Number of errors : 18 ( 0 filtered)
|
||||
Number of warnings : 0 ( 0 filtered)
|
||||
Number of infos : 0 ( 0 filtered)
|
||||
|
||||
|
@ -14,32 +14,32 @@
|
||||
<tr>
|
||||
<td>PATHEXT</td>
|
||||
<td>.COM;<br>.EXE;<br>.BAT;<br>.CMD;<br>.VBS;<br>.VBE;<br>.JS;<br>.JSE;<br>.WSF;<br>.WSH;<br>.MSC</td>
|
||||
<td><font color=gray>.COM;<br>.EXE;<br>.BAT;<br>.CMD;<br>.VBS;<br>.VBE;<br>.JS;<br>.JSE;<br>.WSF;<br>.WSH;<br>.MSC</font></td>
|
||||
<td>.COM;<br>.EXE;<br>.BAT;<br>.CMD;<br>.VBS;<br>.VBE;<br>.JS;<br>.JSE;<br>.WSF;<br>.WSH;<br>.MSC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Path</td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE\\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\..\..\..\DocNav;<br>C:\Xilinx\14.7\ISE_DS\PlanAhead\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\powerpc-eabi\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnuwin\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\arm\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_be\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_le\bin;<br>C:\Xilinx\14.7\ISE_DS\common\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\common\lib\nt;<br>C:\Windows\system32;<br>C:\Windows;<br>C:\Windows\System32\Wbem;<br>C:\Windows\System32\WindowsPowerShell\v1.0\;<br>C:\altera\13.0sp1\modelsim_ase\win32aloem</td>
|
||||
<td><font color=gray>C:\Xilinx\14.7\ISE_DS\ISE\\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\..\..\..\DocNav;<br>C:\Xilinx\14.7\ISE_DS\PlanAhead\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\powerpc-eabi\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnuwin\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\arm\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_be\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_le\bin;<br>C:\Xilinx\14.7\ISE_DS\common\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\common\lib\nt;<br>C:\Windows\system32;<br>C:\Windows;<br>C:\Windows\System32\Wbem;<br>C:\Windows\System32\WindowsPowerShell\v1.0\;<br>C:\altera\13.0sp1\modelsim_ase\win32aloem</font></td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE\\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\ISE\..\..\..\DocNav;<br>C:\Xilinx\14.7\ISE_DS\PlanAhead\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\lib\nt;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\powerpc-eabi\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnuwin\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\arm\nt\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_be\bin;<br>C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_le\bin;<br>C:\Xilinx\14.7\ISE_DS\common\bin\nt;<br>C:\Xilinx\14.7\ISE_DS\common\lib\nt;<br>C:\Windows\system32;<br>C:\Windows;<br>C:\Windows\System32\Wbem;<br>C:\Windows\System32\WindowsPowerShell\v1.0\;<br>C:\altera\13.0sp1\modelsim_ase\win32aloem</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XILINX</td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE\</td>
|
||||
<td><font color=gray>C:\Xilinx\14.7\ISE_DS\ISE\</font></td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE\</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XILINX_DSP</td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE</td>
|
||||
<td><font color=gray>C:\Xilinx\14.7\ISE_DS\ISE</font></td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\ISE</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XILINX_EDK</td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\EDK</td>
|
||||
<td><font color=gray>C:\Xilinx\14.7\ISE_DS\EDK</font></td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\EDK</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XILINX_PLANAHEAD</td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\PlanAhead</td>
|
||||
<td><font color=gray>C:\Xilinx\14.7\ISE_DS\PlanAhead</font></td>
|
||||
<td>C:\Xilinx\14.7\ISE_DS\PlanAhead</td>
|
||||
</tr>
|
||||
</TABLE>
|
||||
<A NAME="Synthesis Property Settings"></A>
|
||||
@ -186,28 +186,28 @@
|
||||
<td><b>Default Value</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color=gray>-intstyle</font></td>
|
||||
<td><font color=gray> </font></td>
|
||||
<td><font color=gray>ise</font></td>
|
||||
<td><font color=gray>None</font></td>
|
||||
<td>-intstyle</td>
|
||||
<td> </td>
|
||||
<td>ise</td>
|
||||
<td>None</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color=gray>-dd</font></td>
|
||||
<td><font color=gray> </font></td>
|
||||
<td><font color=gray>_ngo</font></td>
|
||||
<td><font color=gray>None</font></td>
|
||||
<td>-dd</td>
|
||||
<td> </td>
|
||||
<td>_ngo</td>
|
||||
<td>None</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color=gray>-p</font></td>
|
||||
<td><font color=gray> </font></td>
|
||||
<td><font color=gray>xc95144xl-TQ100-10</font></td>
|
||||
<td><font color=gray>None</font></td>
|
||||
<td>-p</td>
|
||||
<td> </td>
|
||||
<td>xc95144xl-TQ100-10</td>
|
||||
<td>None</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font color=gray>-uc</font></td>
|
||||
<td><font color=gray> </font></td>
|
||||
<td><font color=gray>Z:/Warp-SE/cpld/WarpSE-XC95144XL.ucf</font></td>
|
||||
<td><font color=gray>None</font></td>
|
||||
<td>-uc</td>
|
||||
<td> </td>
|
||||
<td>Z:/Warp-SE/cpld/WarpSE-XC95144XL.ucf</td>
|
||||
<td>None</td>
|
||||
</tr>
|
||||
</TABLE>
|
||||
<A NAME="Operating System Information"></A>
|
||||
@ -223,22 +223,22 @@
|
||||
<tr>
|
||||
<td>CPU Architecture/Speed</td>
|
||||
<td>QEMU Virtual CPU version 2.5+/1000 MHz</td>
|
||||
<td><font color=gray>QEMU Virtual CPU version 2.5+/1000 MHz</font></td>
|
||||
<td>QEMU Virtual CPU version 2.5+/1000 MHz</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Host</td>
|
||||
<td>ZaneMacWin7</td>
|
||||
<td><font color=gray>ZaneMacWin7</font></td>
|
||||
<td>ZaneMacWin7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>OS Name</td>
|
||||
<td>Microsoft Windows 7 , 32-bit</td>
|
||||
<td><font color=gray>Microsoft Windows 7 , 32-bit</font></td>
|
||||
<td>Microsoft Windows 7 , 32-bit</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>OS Release</td>
|
||||
<td>Service Pack 1 (build 7601)</td>
|
||||
<td><font color=gray>Service Pack 1 (build 7601)</font></td>
|
||||
<td>Service Pack 1 (build 7601)</td>
|
||||
</tr>
|
||||
</TABLE>
|
||||
</BODY> </HTML>
|
@ -2,18 +2,18 @@
|
||||
<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 (09/03/2022 - 16:22:34)</B></TD></TR>
|
||||
<TD ALIGN=CENTER COLSPAN='4'><B>WarpSE Project Status</B></TD></TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Project File:</B></TD>
|
||||
<TD>WarpSE.xise</TD>
|
||||
<TD BGCOLOR='#FFFF99'><b>Parser Errors:</b></TD>
|
||||
<TD ALIGN=LEFT><font color='red'; face='Arial'><b>X </b></font><A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\_xmsgs/pn_parser.xmsgs?&DataKey=Error'>2 Errors</A></TD>
|
||||
<TD> No Errors </TD>
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Module Name:</B></TD>
|
||||
<TD>WarpSE</TD>
|
||||
<TD BGCOLOR='#FFFF99'><B>Implementation State:</B></TD>
|
||||
<TD>Synthesized (Failed)</TD>
|
||||
<TD>Translated</TD>
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Target Device:</B></TD>
|
||||
@ -21,7 +21,7 @@
|
||||
<TD BGCOLOR='#FFFF99'><UL><LI><B>Errors:</B></LI></UL></TD>
|
||||
<TD>
|
||||
<font color="red"; face="Arial"><b>X </b></font>
|
||||
<A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\_xmsgs/*.xmsgs?&DataKey=Error'>11 Errors (11 new)</A></TD>
|
||||
<A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\_xmsgs/*.xmsgs?&DataKey=Error'>11 Errors (11 new)</A></TD>
|
||||
</TR>
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Product Version:</B></TD><TD>ISE 14.7</TD>
|
||||
@ -44,7 +44,7 @@
|
||||
<TR ALIGN=LEFT>
|
||||
<TD BGCOLOR='#FFFF99'><B>Environment:</B></dif></TD>
|
||||
<TD>
|
||||
<A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\WarpSE_envsettings.html'>
|
||||
<A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\WarpSE_envsettings.html'>
|
||||
System Settings</A>
|
||||
</TD>
|
||||
<TD BGCOLOR='#FFFF99'><UL><LI><B>Final Timing Score:</B></LI></UL></TD>
|
||||
@ -66,9 +66,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='Z:/Warp-SE/cpld/XC95144XL\WarpSE.syr'>Synthesis Report</A></TD><TD>Current</TD><TD>Sat Sep 3 16:22:35 2022</TD><TD ALIGN=LEFT><font color="red"; face="Arial"><b>X </b></font><A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\_xmsgs/xst.xmsgs?&DataKey=Error'>11 Errors (11 new)</A></TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\WarpSE.bld'>Translation Report</A></TD><TD>Out of Date</TD><TD>Mon Mar 28 09:45:45 2022</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='Z:/Warp-SE/cpld/XC95144XL\WarpSE.rpt'>CPLD Fitter Report (Text)</A></TD><TD>Out of Date</TD><TD>Mon Mar 28 09:46:19 2022</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Warning'>2 Warnings (1 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'><A HREF_DISABLED='Z:/Warp-SE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Info'>3 Infos (3 new)</A></TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\WarpSE.syr'>Synthesis Report</A></TD><TD>Current</TD><TD>Sun Mar 19 19:23:24 2023</TD><TD ALIGN=LEFT><font color="red"; face="Arial"><b>X </b></font><A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\_xmsgs/xst.xmsgs?&DataKey=Error'>11 Errors (11 new)</A></TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT COLSPAN='2'>0</TD></TR>
|
||||
<TR ALIGN=LEFT><TD><A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\WarpSE.bld'>Translation Report</A></TD><TD>Current</TD><TD>Sun Mar 19 19:23:24 2023</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/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\WarpSE.rpt'>CPLD Fitter Report (Text)</A></TD><TD>Current</TD><TD>Sun Mar 19 19:23:24 2023</TD><TD ALIGN=LEFT>0</TD><TD ALIGN=LEFT><A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\_xmsgs/cpldfit.xmsgs?&DataKey=Warning'>2 Warnings (1 new)</A></TD><TD ALIGN=LEFT COLSPAN='2'><A HREF_DISABLED='C:/Users/Wolf/Documents/GitHub/Warp-SE/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%'>
|
||||
@ -78,5 +78,5 @@ System Settings</A>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<br><center><b>Date Generated:</b> 09/03/2022 - 17:36:27</center>
|
||||
<br><center><b>Date Generated:</b> 03/19/2023 - 20:19:43</center>
|
||||
</BODY></HTML>
|
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<document OS="nt" product="ISE" version="14.7">
|
||||
<document OS="nt64" product="ISE" version="14.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 stringID="Xst" timeStamp="Sat Sep 03 16:22:30 2022">
|
||||
<application stringID="Xst" timeStamp="Mon Mar 20 00:58:20 2023">
|
||||
<section stringID="User_Env">
|
||||
<table stringID="User_EnvVar">
|
||||
<column stringID="variable"/>
|
||||
<column stringID="value"/>
|
||||
<row stringID="row" value="0">
|
||||
<item stringID="variable" value="Path"/>
|
||||
<item stringID="value" value="C:\Xilinx\14.7\ISE_DS\ISE\\lib\nt;C:\Xilinx\14.7\ISE_DS\ISE\\bin\nt;C:\Xilinx\14.7\ISE_DS\ISE\bin\nt;C:\Xilinx\14.7\ISE_DS\ISE\lib\nt;C:\Xilinx\14.7\ISE_DS\ISE\..\..\..\DocNav;C:\Xilinx\14.7\ISE_DS\PlanAhead\bin;C:\Xilinx\14.7\ISE_DS\EDK\bin\nt;C:\Xilinx\14.7\ISE_DS\EDK\lib\nt;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\powerpc-eabi\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnuwin\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\arm\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_be\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt_le\bin;C:\Xilinx\14.7\ISE_DS\common\bin\nt;C:\Xilinx\14.7\ISE_DS\common\lib\nt;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\altera\13.0sp1\modelsim_ase\win32aloem"/>
|
||||
<item stringID="value" value="C:\Xilinx\14.7\ISE_DS\ISE\\lib\nt64;C:\Xilinx\14.7\ISE_DS\ISE\\bin\nt64;C:\Xilinx\14.7\ISE_DS\ISE\bin\nt64;C:\Xilinx\14.7\ISE_DS\ISE\lib\nt64;C:\Xilinx\14.7\ISE_DS\ISE\..\..\..\DocNav;C:\Xilinx\14.7\ISE_DS\PlanAhead\bin;C:\Xilinx\14.7\ISE_DS\EDK\bin\nt64;C:\Xilinx\14.7\ISE_DS\EDK\lib\nt64;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\powerpc-eabi\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnuwin\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\arm\nt\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt64_be\bin;C:\Xilinx\14.7\ISE_DS\EDK\gnu\microblaze\linux_toolchain\nt64_le\bin;C:\Xilinx\14.7\ISE_DS\common\bin\nt64;C:\Xilinx\14.7\ISE_DS\common\lib\nt64;C:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\intelFPGA_lite\19.1\modelsim_ase\win32aloem;C:\altera\13.0sp1\modelsim_ase\win32aloem;C:\Users\Wolf\AppData\Local\GitHubDesktop\bin"/>
|
||||
</row>
|
||||
<row stringID="row" value="1">
|
||||
<item stringID="variable" value="PATHEXT"/>
|
||||
@ -36,20 +36,16 @@
|
||||
</row>
|
||||
</table>
|
||||
<item stringID="User_EnvOs" value="OS Information">
|
||||
<item stringID="User_EnvOsname" value="Microsoft Windows 7 , 32-bit"/>
|
||||
<item stringID="User_EnvOsname" value="Microsoft Windows 7 , 64-bit"/>
|
||||
<item stringID="User_EnvOsrelease" value="Service Pack 1 (build 7601)"/>
|
||||
</item>
|
||||
<item stringID="User_EnvHost" value="ZaneMacWin7"/>
|
||||
<item stringID="User_EnvHost" value="LabWin7"/>
|
||||
<table stringID="User_EnvCpu">
|
||||
<column stringID="arch"/>
|
||||
<column stringID="speed"/>
|
||||
<row stringID="row" value="0">
|
||||
<item stringID="arch" value="QEMU Virtual CPU version 2.5+"/>
|
||||
<item stringID="speed" value="1000 MHz"/>
|
||||
</row>
|
||||
<row stringID="row" value="1">
|
||||
<item stringID="arch" value="QEMU Virtual CPU version 2.5+"/>
|
||||
<item stringID="speed" value="1000 MHz"/>
|
||||
<item stringID="arch" value="AMD FX(tm)-8320 Eight-Core Processor "/>
|
||||
<item stringID="speed" value="3792 MHz"/>
|
||||
</row>
|
||||
</table>
|
||||
</section>
|
||||
@ -79,7 +75,7 @@
|
||||
<item DEFAULT="YES" label="-equivalent_register_removal" stringID="XST_EQUIVALENTREGISTERREMOVAL" value="YES"/>
|
||||
</section>
|
||||
<section stringID="XST_ERRORS_STATISTICS">
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_ERRORS" value="11"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_ERRORS" value="18"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_WARNINGS" value="0"/>
|
||||
<item dataType="int" filtered="0" stringID="XST_NUMBER_OF_INFOS" value="0"/>
|
||||
</section>
|
||||
|
@ -8,19 +8,7 @@
|
||||
<!-- 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 "Z:/Warp-SE/cpld/CNT.v" into library work</arg>
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="ProjectMgmt" num="806" >"<arg fmt="%s" index="1">Z:/Warp-SE/cpld/CNT.v</arg>" Line <arg fmt="%d" index="2">127</arg>. <arg fmt="%s" index="3">Syntax error near "<=".</arg>
|
||||
</msg>
|
||||
|
||||
<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "Z:/Warp-SE/cpld/IOBM.v" into library work</arg>
|
||||
</msg>
|
||||
|
||||
<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "Z:/Warp-SE/cpld/RAM.v" into library work</arg>
|
||||
</msg>
|
||||
|
||||
<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "Z:/Warp-SE/cpld/WarpSE.v" into library work</arg>
|
||||
<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/FSB.v" into library work</arg>
|
||||
</msg>
|
||||
|
||||
</messages>
|
||||
|
@ -5,37 +5,58 @@
|
||||
behavior or data corruption. It is strongly advised that
|
||||
users do not edit the contents of this file. -->
|
||||
<messages>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="new" ><arg fmt="%s" index="1">"../RAM.v" line 63 </arg>'<arg fmt="%s" index="2">BACTr</arg>' has not been declared
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 38 </arg>'<arg fmt="%s" index="2">BACTr</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../RAM.v</arg>" line <arg fmt="%d" index="2">69</arg> <arg fmt="%s" index="3">unexpected token: ';'</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 96 </arg>'<arg fmt="%s" index="2">RefFromRS0Next</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../RAM.v</arg>" line <arg fmt="%d" index="2">75</arg> <arg fmt="%s" index="3">unexpected token: 'begin'</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 100 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../RAM.v</arg>" line <arg fmt="%d" index="2">76</arg> <arg fmt="%s" index="3">expecting ';', found ')'</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 101 </arg>'<arg fmt="%s" index="2">RefFromRS0Pre</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../RAM.v</arg>" line <arg fmt="%d" index="2">76</arg> <arg fmt="%s" index="3">unexpected token: '<='</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 107 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../RAM.v</arg>" line <arg fmt="%d" index="2">76</arg> <arg fmt="%s" index="3">expecting 'endmodule', found '0'</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 113 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="new" ><arg fmt="%s" index="1">"../FSB.v" line 59 </arg>'<arg fmt="%s" index="2">BERR</arg>' has not been declared
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 118 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="new" ><arg fmt="%s" index="1">"../CNT.v" line 29 </arg>'<arg fmt="%s" index="2">RefREQ</arg>' has not been declared
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 124 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="new" ><arg fmt="%s" index="1">"../CNT.v" line 30 </arg>'<arg fmt="%s" index="2">RefREQ</arg>' has not been declared
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 132 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../CNT.v</arg>" line <arg fmt="%d" index="2">34</arg> <arg fmt="%s" index="3">expecting ';', found '='</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 139 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="26" delta="new" >"<arg fmt="%s" index="1">../CNT.v</arg>" line <arg fmt="%d" index="2">34</arg> <arg fmt="%s" index="3">expecting 'endmodule', found '0'</arg>
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 146 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 153 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 160 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 167 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 176 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 184 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../RAM.v" line 190 </arg>'<arg fmt="%s" index="2">RAMDIS1</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
<msg type="error" file="HDLCompilers" num="28" delta="old" ><arg fmt="%s" index="1">"../FSB.v" line 71 </arg>'<arg fmt="%s" index="2">BERR</arg>' has not been declared
|
||||
</msg>
|
||||
|
||||
</messages>
|
||||
|
@ -10,13 +10,13 @@
|
||||
<ClosedNode>/MXSE Z:|Warp-SE|cpld|WarpSE.v</ClosedNode>
|
||||
</ClosedNodes>
|
||||
<SelectedItems>
|
||||
<SelectedItem>WarpSE (Z:/Warp-SE/cpld/WarpSE.v)</SelectedItem>
|
||||
<SelectedItem>iobm - IOBM (C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/IOBM.v)</SelectedItem>
|
||||
</SelectedItems>
|
||||
<ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
|
||||
<ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000001000000000000000000000000000000000202000000010000000100000064000000d2000000020000000000000000000000000200000064ffffffff000000810000000300000002000000d20000000100000003000000000000000100000003</ViewHeaderState>
|
||||
<UserChangedColumnWidths orientation="horizontal" >true</UserChangedColumnWidths>
|
||||
<CurrentItem>WarpSE (Z:/Warp-SE/cpld/WarpSE.v)</CurrentItem>
|
||||
<CurrentItem>iobm - IOBM (C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/IOBM.v)</CurrentItem>
|
||||
</ItemView>
|
||||
<ItemView engineview="SynthesisOnly" sourcetype="DESUT_VERILOG" guiview="Process" >
|
||||
<ClosedNodes>
|
||||
@ -29,7 +29,7 @@
|
||||
</SelectedItems>
|
||||
<ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
|
||||
<ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000000000000000000012b000000010000000100000000000000000000000064ffffffff0000008100000000000000010000012b0000000100000000</ViewHeaderState>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000001000000000000000000000000000000000000000000000000f8000000010000000100000000000000000000000064ffffffff000000810000000000000001000000f80000000100000000</ViewHeaderState>
|
||||
<UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
|
||||
<CurrentItem></CurrentItem>
|
||||
</ItemView>
|
||||
@ -40,7 +40,7 @@
|
||||
<SelectedItems/>
|
||||
<ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
|
||||
<ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000000000000000100000000000000000000000000000000000002b3000000040101000100000000000000000000000064ffffffff0000008100000000000000040000004900000001000000000000009d0000000100000000000000660000000100000000000001670000000100000000</ViewHeaderState>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000000000000000100000000000000000000000000000000000003a3000000040101000100000000000000000000000064ffffffff0000008100000000000000040000004900000001000000000000009d0000000100000000000000660000000100000000000002570000000100000000</ViewHeaderState>
|
||||
<UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
|
||||
<CurrentItem>CNT.v</CurrentItem>
|
||||
</ItemView>
|
||||
@ -52,7 +52,7 @@
|
||||
<SelectedItems/>
|
||||
<ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
|
||||
<ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000000000000010000000000000000000000000000000000000109000000010001000100000000000000000000000064ffffffff000000810000000000000001000001090000000100000000</ViewHeaderState>
|
||||
<ViewHeaderState orientation="horizontal" >000000ff000000000000000100000000000000000100000000000000000000000000000000000003a3000000010001000100000000000000000000000064ffffffff000000810000000000000001000003a30000000100000000</ViewHeaderState>
|
||||
<UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
|
||||
<CurrentItem>work</CurrentItem>
|
||||
</ItemView>
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<report-views version="2.0" >
|
||||
<header>
|
||||
<DateModified>2022-09-03T14:17:57</DateModified>
|
||||
<DateModified>2023-03-19T20:19:43</DateModified>
|
||||
<ModuleName>WarpSE</ModuleName>
|
||||
<SummaryTimeStamp>Unknown</SummaryTimeStamp>
|
||||
<SavedFilePath>Z:/Warp-SE/cpld/XC95144XL/iseconfig/WarpSE.xreport</SavedFilePath>
|
||||
<ImplementationReportsDirectory>Z:/Warp-SE/cpld/XC95144XL\</ImplementationReportsDirectory>
|
||||
<SavedFilePath>C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/iseconfig/WarpSE.xreport</SavedFilePath>
|
||||
<ImplementationReportsDirectory>C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL\</ImplementationReportsDirectory>
|
||||
<DateInitialized>2022-03-28T09:29:43</DateInitialized>
|
||||
<EnableMessageFiltering>false</EnableMessageFiltering>
|
||||
</header>
|
||||
|
@ -3,11 +3,11 @@
|
||||
<!--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="Sat Sep 03 16:22:17 2022">
|
||||
<application name="pn" timeStamp="Mon Mar 20 00:58:19 2023">
|
||||
<section name="Project Information" visible="false">
|
||||
<property name="ProjectID" value="8B3C87EB1A1F4FD6BCA39339C89EC1EE" type="project"/>
|
||||
<property name="ProjectIteration" value="0" type="project"/>
|
||||
<property name="ProjectFile" value="Z:/Warp-SE/cpld/XC95144XL/WarpSE.xise" type="project"/>
|
||||
<property name="ProjectFile" value="C:/Users/Wolf/Documents/GitHub/Warp-SE/cpld/XC95144XL/WarpSE.xise" type="project"/>
|
||||
<property name="ProjectCreationTimestamp" value="2022-03-28T09:14:07" type="project"/>
|
||||
</section>
|
||||
<section name="Project Statistics" visible="true">
|
||||
|
Loading…
x
Reference in New Issue
Block a user