diff options
93 files changed, 754 insertions, 5889 deletions
@@ -2,4 +2,3 @@ *.wdb *.exe *.un~ -*.prj @@ -30,7 +30,7 @@ reg [2:0] i = 0; reg [19:0] work; -always @ ( hun, ten, one ) begin +always @ ( hun, ten, one, bin ) begin work = {hun, ten, one, bin}; @@ -39,13 +39,13 @@ always @ ( hun, ten, one ) begin for (i = 0; i < 7; i = i + 1) begin work = work >> 1; if (work[19:16] >= 5) begin - work[19:16] = work[19:16] - 3; + work[19:16] = work[19:16] - 4'd3; end if (work[15:12] >= 5) begin - work[15:12] = work[15:12] - 3; + work[15:12] = work[15:12] - 4'd3; end if (work[11:8] >= 5) begin - work [11:8] = work[11:8] - 3; + work [11:8] = work[11:8] - 4'd3; end end @@ -36,13 +36,13 @@ always @( bin ) begin for (i = 0; i < 7; i = i +1) begin work = work << 1; if (work[19:16] >= 5) begin - work[19:16] = work[19:16] + 3; + work[19:16] = work[19:16] + 4'd3; end if (work[15:12] >= 5) begin - work[15:12] = work[15:12] + 3; + work[15:12] = work[15:12] + 4'd3; end if (work[11:8] >= 5) begin - work[11:8] = work[11:8] + 3; + work[11:8] = work[11:8] + 4'd3; end end diff --git a/ClockDivider.v b/ClockDivider.v index 2447e7e..7ced5a7 100644 --- a/ClockDivider.v +++ b/ClockDivider.v @@ -36,7 +36,7 @@ always @(posedge clk_in or posedge rst) begin clk_out = ~clk_out; c = 0; end else begin - c = c + 1; + c = c + 24'd1; end diff --git a/Countdown.v b/Countdown.v index 78e4162..a8c7506 100644 --- a/Countdown.v +++ b/Countdown.v @@ -23,35 +23,43 @@ module Countdown( input rst, input start, input [7:0] init, - output [7:0] t + output [7:0] t,
+ output running ); reg [7:0] t; -reg running = 0; +reg running = 0;
+reg [7:0] count;
+
+always @(posedge clk_1hz or posedge rst) begin
+ if (rst)
+ count <= 0;
+ else if (running)
+ count <= count + 1;
+ else
+ count <= 0;
+end
-always @(init) begin - if (!running) begin - t = init; - end else begin - t = t; - end -end - -always @(posedge clk_1hz) begin - if (running) begin - t <= t - 1; - end else begin - t <= init; - end -end +always @(posedge clk_1hz or posedge rst) begin
+
+ if (rst)
+ t <= 0;
+ else //if (running)
+ t <= init - count;
-always @(posedge start) begin - running = 1; end -always @(rst) begin - running = 0; - t = 0; +always @(posedge start or posedge rst) begin
+
+ if (rst)
+ running <= 0;
+ else if (count == init) begin
+ running <= 0;
+ end else if (start)
+ running <= 1;
+ else
+ running <= running;
+ end endmodule diff --git a/CountdownController.v b/CountdownController.v index 35c84f9..626eef3 100644 --- a/CountdownController.v +++ b/CountdownController.v @@ -31,16 +31,20 @@ module CountdownController( reg [6:0] ssd; reg [3:0] AN; -wire [6:0] ssdo; -wire [3:0] ANo; +wire [6:0] ssd1;
+wire [6:0] ssd2; +wire [3:0] AN1;
+wire [3:0] AN2; // clocks wire seconds; wire dbclk; -wire dispclk; +wire dispclk;
+
+wire running; // buttons -wire a, b; +wire a, b, c; // bcd things wire [3:0] ad, bd; @@ -50,34 +54,36 @@ wire [3:0] ado, bdo, cdo; wire [7:0] init; wire [7:0] tout; -//ClockDivider dbc(.count(1_000_000), .rst(rst), .clk_in(clk), .clk_out(dbclk)); -//ClockDivider sec(.count(100_000_000), .rst(rst), .clk_in(clk), .clk_out(seconds)); -//ClockDivider dcc(.count(7_500_000), .rst(rst), .clk_in(clk), .clk_out(dispclk)); +ClockDivider dbc(.count(100), .rst(rst), .clk_in(clk), .clk_out(dbclk)); +ClockDivider sec(.count(100_000_000), .rst(rst), .clk_in(clk), .clk_out(seconds)); +ClockDivider dcc(.count(7_500_0), .rst(rst), .clk_in(clk), .clk_out(dispclk)); -ClockDivider dbc(.count(10), .rst(rst), .clk_in(clk), .clk_out(dbclk)); -ClockDivider sec(.count(100), .rst(rst), .clk_in(clk), .clk_out(seconds)); -ClockDivider dcc(.count(25), .rst(rst), .clk_in(clk), .clk_out(dispclk)); +//ClockDivider dbc(.count(24'd10), .rst(rst), .clk_in(clk), .clk_out(dbclk)); +//ClockDivider sec(.count(24'd100), .rst(rst), .clk_in(clk), .clk_out(seconds)); +//ClockDivider dcc(.count(24'd25), .rst(rst), .clk_in(clk), .clk_out(dispclk)); debouncer dbA(.dout(a), .din(btnA), .rst(rst), .clk_1M(dbclk)); debouncer dbB(.dout(b), .din(btnB), .rst(rst), .clk_1M(dbclk)); +debouncer dbC(.dout(c), .din(btnC), .rst(rst), .clk_1M(dbclk));
-Increment inc1(.value(ad), .btn(a)); -Increment inc2(.value(bd), .btn(b)); +Increment inc1(.value(ad), .btn(a), .rst(rst)); +Increment inc2(.value(bd), .btn(b), .rst(rst)); -//Increment inc1(.value(ad), .btn(btnA)); +//Increment inc1(.value(ad), .btn(btnA));
//Increment inc2(.value(bd), .btn(btnB)); -BCD2Bin bcd2b(.hun(0), .ten(ad), .one(bd), .bin(init)); +BCD2Bin bcd2b(.hun(4'd0), .ten(ad), .one(bd), .bin(init)); -Countdown cntdwn(.t(tout), .rst(rst), .init(init), .clk_1hz(seconds), .start(btnC)); +Countdown cntdwn(.t(tout), .running(running), .rst(rst), .init(init), .clk_1hz(seconds), .start(c)); Bin2BCD b2bcb(.hun(cdo), .ten(ado), .one(bdo), .bin(tout)); -DisplayController dispcont(.result(ssdo), .AN(ANo), .A(ado), .B(bdo), .clk_in(dispclk), .rst(rst)); - - -assign ssd = ssdo; -assign AN = ANo; +DisplayController dispcont1(.result(ssd1), .AN(AN1), .A(ado), .B(bdo), .clk_in(dispclk), .rst(rst)); +DisplayController dispcont2(.result(ssd2), .AN(AN2), .A(ad), .B(bd), .clk_in(dispclk), .rst(rst)); +always @(posedge clk) begin + ssd <= running ? ssd1 : ssd2; + AN <= running ? AN1 : AN2; +end
endmodule diff --git a/CountdownController_summary.html b/CountdownController_summary.html index b9ce724..d2dc1c9 100644 --- a/CountdownController_summary.html +++ b/CountdownController_summary.html @@ -22,7 +22,7 @@ <TD> </TD> </TR> <TR ALIGN=LEFT> -<TD BGCOLOR='#FFFF99'><B>Product Version:</B></TD><TD>ISE 13.4</TD> +<TD BGCOLOR='#FFFF99'><B>Product Version:</B></TD><TD>ISE 13.3</TD> <TD BGCOLOR='#FFFF99'><UL><LI><B>Warnings:</B></LI></UL></TD> <TD> </TD> </TR> @@ -72,9 +72,9 @@ <BR><TABLE BORDER CELLSPACING=0 CELLPADDING=3 WIDTH='100%'> <TR ALIGN=CENTER BGCOLOR='#99CCFF'><TD ALIGN=CENTER COLSPAN='3'><B>Secondary Reports</B></TD><TD ALIGN=RIGHT WIDTH='10%'COLSPAN=1> <A HREF_DISABLED="?&ExpandedTable=SecondaryReports"><B>[-]</B></a></TD></TR> <TR BGCOLOR='#FFFF99'><TD><B>Report Name</B></TD><TD><B>Status</B></TD><TD COLSPAN='2'><B>Generated</B></TD></TR> -<TR ALIGN=LEFT><TD><A HREF_DISABLED='/home/michael/Documents/School/EC311/lab4/isim.log'>ISIM Simulator Log</A></TD><TD>Current</TD><TD COLSPAN='2'>Wed Mar 21 13:14:04 2012</TD></TR> +<TR ALIGN=LEFT><TD><A HREF_DISABLED='X:/My Documents/ec311/ec311-lab4\isim.log'>ISIM Simulator Log</A></TD><TD>Current</TD><TD COLSPAN='2'>Wed Mar 21 13:22:33 2012</TD></TR> </TABLE> -<br><center><b>Date Generated:</b> 03/21/2012 - 13:43:14</center> +<br><center><b>Date Generated:</b> 03/21/2012 - 17:32:54</center> </BODY></HTML>
\ No newline at end of file diff --git a/DisplayController.v b/DisplayController.v index 1ea2bf1..108d7a9 100644 --- a/DisplayController.v +++ b/DisplayController.v @@ -35,13 +35,13 @@ wire [6:0] ssd2; reg prev = 0; -SevSegDisp d1(.A(A), .out(ssd1)); -SevSegDisp d2(.A(B), .out(ssd2)); +SevSegDisp d1(.A(A), .result(ssd1)); +SevSegDisp d2(.A(B), .result(ssd2)); always @( posedge clk_in ) begin prev <= ~prev; result <= prev ? ssd1 : ssd2; - AN <= { 2'b11, prev, ~prev }; + AN <= { 2'b11, ~prev, prev }; end diff --git a/Increment.v b/Increment.v index b386d13..105a557 100644 --- a/Increment.v +++ b/Increment.v @@ -19,14 +19,18 @@ // ////////////////////////////////////////////////////////////////////////////////// module Increment( - input btn, + input btn,
+ input rst, output [3:0] value ); reg [3:0] value = 0; -always @ ( posedge btn ) begin - value = value == 9 ? 0 : value + 1; +always @ ( posedge btn or posedge rst) begin
+ if (rst)
+ value <= 0;
+ else + value <= value == 4'd9 ? 4'd0 : value + 4'd1; end endmodule diff --git a/SevSegDisp.v b/SevSegDisp.v index f0b6ee9..8d2c3b1 100644 --- a/SevSegDisp.v +++ b/SevSegDisp.v @@ -21,24 +21,24 @@ module SevSegDisp( input [3:0] A, - output [6:0] out + output [6:0] result ); -reg [6:0] out = 0; +reg [6:0] result = 0; always @ ( * ) begin case ( A ) - 4'b0000 : out = 7'b0000001; - 4'b0001 : out = 7'b1001111; - 4'b0010 : out = 7'b0010010; - 4'b0011 : out = 7'b0000110; - 4'b0100 : out = 7'b1001100; - 4'b0101 : out = 7'b0100100; - 4'b0110 : out = 7'b0100000; - 4'b0111 : out = 7'b0001111; - 4'b1000 : out = 7'b0000000; - 4'b1001 : out = 7'b0001100; - default : out = 7'b0011010; + 4'b0000 : result = 7'b0000001; + 4'b0001 : result = 7'b1001111; + 4'b0010 : result = 7'b0010010; + 4'b0011 : result = 7'b0000110; + 4'b0100 : result = 7'b1001100; + 4'b0101 : result = 7'b0100100; + 4'b0110 : result = 7'b0100000; + 4'b0111 : result = 7'b0001111; + 4'b1000 : result = 7'b0000000; + 4'b1001 : result = 7'b0001100; + default : result = 7'b0011010; endcase end diff --git a/TEST_Increment.v b/TEST_Increment.v index 2ff393a..894c734 100644 --- a/TEST_Increment.v +++ b/TEST_Increment.v @@ -25,7 +25,8 @@ module TEST_Increment; // Inputs - reg btn; + reg btn;
+ reg rst; // Outputs wire [3 :0] value; @@ -36,7 +37,8 @@ module TEST_Increment; // Instantiate the Unit Under Test (UUT) Increment uut ( - .btn(btn), + .btn(btn),
+ .rst(rst), .value(value) ); diff --git a/TEST_SevSegDisp.v b/TEST_SevSegDisp.v index a818547..e03bfae 100644 --- a/TEST_SevSegDisp.v +++ b/TEST_SevSegDisp.v @@ -28,12 +28,12 @@ module TEST_SevSegDisp; reg [3:0] A; // Outputs - wire [6:0] out; + wire [6:0] result; // Instantiate the Unit Under Test (UUT) SevSegDisp uut ( .A(A), - .out(out) + .result(result) ); reg [3:0] i = 0; initial begin diff --git a/Test_ContdownController_beh.prj b/Test_ContdownController_beh.prj deleted file mode 100644 index 9f8f6b9..0000000 --- a/Test_ContdownController_beh.prj +++ /dev/null @@ -1,11 +0,0 @@ -verilog work "SevSegDisp.v" -verilog work "Increment.v" -verilog work "DisplayController.v" -verilog work "debouncer.v" -verilog work "Countdown.v" -verilog work "ClockDivider.v" -verilog work "Bin2BCD.v" -verilog work "BCD2Bin.v" -verilog work "CountdownController.v" -verilog work "Test_ContdownController.v" -verilog work "/home/michael/opt/Xilinx/13.4/ISE_DS/ISE//verilog/src/glbl.v" diff --git a/_xmsgs/pn_parser.xmsgs b/_xmsgs/pn_parser.xmsgs index d1c52e5..446c254 100644 --- a/_xmsgs/pn_parser.xmsgs +++ b/_xmsgs/pn_parser.xmsgs @@ -1,15 +1,15 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- IMPORTANT: This is an internal file that has been generated --> -<!-- by the Xilinx ISE software. Any direct editing or --> -<!-- changes made to this file may result in unpredictable --> -<!-- behavior or data corruption. It is strongly advised that --> -<!-- users do not edit the contents of this file. --> -<!-- --> -<!-- Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved. --> - -<messages> -<msg type="info" file="ProjectMgmt" num="1845" ><arg fmt="%s" index="1">Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/Test_ContdownController.v" into library work</arg> -</msg> - -</messages> - +<?xml version="1.0" encoding="UTF-8"?>
+<!-- IMPORTANT: This is an internal file that has been generated -->
+<!-- by the Xilinx ISE software. Any direct editing or -->
+<!-- changes made to this file may result in unpredictable -->
+<!-- behavior or data corruption. It is strongly advised that -->
+<!-- users do not edit the contents of this file. -->
+<!-- -->
+<!-- Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved. -->
+
+<messages>
+<msg type="info" file="ProjectMgmt" num="1835" ><arg fmt="%s" index="1">Analyzing Verilog file "X:/My Documents/ec311/ec311-lab4/Countdown.v" into library work</arg>
+</msg>
+
+</messages>
+
@@ -1,52 +1,20 @@ -Running: /home/michael/opt/Xilinx/13.4/ISE_DS/ISE/bin/lin64/unwrapped/fuse -intstyle ise -incremental -lib unisims_ver -lib unimacro_ver -lib xilinxcorelib_ver -lib secureip -o /home/michael/Documents/School/EC311/lab4/Test_ContdownController_isim_beh.exe -prj /home/michael/Documents/School/EC311/lab4/Test_ContdownController_beh.prj work.Test_ContdownController work.glbl -ISim O.87xd (signature 0x8ddf5b5d) -Number of CPUs detected in this system: 2 -Turning on mult-threading, number of parallel sub-compilation jobs: 4 -Determining compilation order of HDL files -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/SevSegDisp.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/SevSegDisp.v" Line 27: Redeclaration of ansi port out is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/Increment.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/Increment.v" Line 26: Redeclaration of ansi port value is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/DisplayController.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/DisplayController.v" Line 30: Redeclaration of ansi port AN is not allowed -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/DisplayController.v" Line 31: Redeclaration of ansi port result is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/debouncer.v" into library work -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/Countdown.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/Countdown.v" Line 29: Redeclaration of ansi port t is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/ClockDivider.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/ClockDivider.v" Line 28: Redeclaration of ansi port clk_out is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/Bin2BCD.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/Bin2BCD.v" Line 28: Redeclaration of ansi port one is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/BCD2Bin.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/BCD2Bin.v" Line 28: Redeclaration of ansi port bin is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/CountdownController.v" into library work -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 31: Redeclaration of ansi port ssd is not allowed -WARNING:HDLCompiler:751 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 32: Redeclaration of ansi port AN is not allowed -Analyzing Verilog file "/home/michael/Documents/School/EC311/lab4/Test_ContdownController.v" into library work -Analyzing Verilog file "/home/michael/opt/Xilinx/13.4/ISE_DS/ISE//verilog/src/glbl.v" into library work -Starting static elaboration -WARNING:HDLCompiler:189 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 54: Size mismatch in connection of port <count>. Formal port size is 24-bit while actual signal size is 32-bit. -WARNING:HDLCompiler:189 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 55: Size mismatch in connection of port <count>. Formal port size is 24-bit while actual signal size is 32-bit. -WARNING:HDLCompiler:189 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 53: Size mismatch in connection of port <count>. Formal port size is 24-bit while actual signal size is 32-bit. -WARNING:HDLCompiler:189 - "/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 66: Size mismatch in connection of port <hun>. Formal port size is 4-bit while actual signal size is 32-bit. -Completed static elaboration -Fuse Memory Usage: 95008 KB -Fuse CPU Usage: 1560 ms -Compiling module ClockDivider -Compiling module debouncer -Compiling module Increment -Compiling module BCD2Bin -Compiling module Countdown -Compiling module Bin2BCD -Compiling module SevSegDisp -Compiling module DisplayController -Compiling module CountdownController -Compiling module Test_ContdownController -Compiling module glbl -Time Resolution for simulation is 1ps. -Waiting for 8 sub-compilation(s) to finish... -Compiled 11 Verilog Units -Built simulation executable /home/michael/Documents/School/EC311/lab4/Test_ContdownController_isim_beh.exe -Fuse Memory Usage: 393132 KB -Fuse CPU Usage: 1610 ms -GCC CPU Usage: 1250 ms +Running: C:\Xilinx\13.3\ISE_DS\ISE\bin\nt64\unwrapped\fuse.exe -intstyle ise -incremental -lib unisims_ver -lib unimacro_ver -lib xilinxcorelib_ver -lib secureip -o X:/My Documents/ec311/ec311-lab4/TEST_Countdown_isim_beh.exe -prj X:/My Documents/ec311/ec311-lab4/TEST_Countdown_beh.prj work.TEST_Countdown work.glbl
+ISim O.76xd (signature 0xc3576ebc)
+Number of CPUs detected in this system: 2
+Turning on mult-threading, number of parallel sub-compilation jobs: 4
+Determining compilation order of HDL files
+Analyzing Verilog file "X:/My Documents/ec311/ec311-lab4/Countdown.v" into library work
+WARNING:HDLCompiler:751 - "X:/My Documents/ec311/ec311-lab4/Countdown.v" Line 29: Redeclaration of ansi port t is not allowed
+Analyzing Verilog file "X:/My Documents/ec311/ec311-lab4/TEST_Countdown.v" into library work
+Analyzing Verilog file "C:/Xilinx/13.3/ISE_DS/ISE//verilog/src/glbl.v" into library work
+Starting static elaboration
+Completed static elaboration
+Compiling module Countdown
+Compiling module TEST_Countdown
+Compiling module glbl
+Time Resolution for simulation is 1ps.
+Waiting for 1 sub-compilation(s) to finish...
+Compiled 3 Verilog Units
+Built simulation executable X:/My Documents/ec311/ec311-lab4/TEST_Countdown_isim_beh.exe
+Fuse Memory Usage: 26940 KB
+Fuse CPU Usage: 467 ms
diff --git a/fuse.xmsgs b/fuse.xmsgs index 39e40a2..c3f8604 100644..100755 --- a/fuse.xmsgs +++ b/fuse.xmsgs @@ -1,51 +1,12 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- IMPORTANT: This is an internal file that has been generated - by the Xilinx ISE software. Any direct editing or - changes made to this file may result in unpredictable - behavior or data corruption. It is strongly advised that - users do not edit the contents of this file. --> +<?xml version="1.0" encoding="UTF-8"?>
+<!-- IMPORTANT: This is an internal file that has been generated
+ by the Xilinx ISE software. Any direct editing or
+ changes made to this file may result in unpredictable
+ behavior or data corruption. It is strongly advised that
+ users do not edit the contents of this file. -->
<messages> -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/SevSegDisp.v" Line 27: Redeclaration of ansi port <arg fmt="%s" index="1">out</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/Increment.v" Line 26: Redeclaration of ansi port <arg fmt="%s" index="1">value</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/DisplayController.v" Line 30: Redeclaration of ansi port <arg fmt="%s" index="1">AN</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/DisplayController.v" Line 31: Redeclaration of ansi port <arg fmt="%s" index="1">result</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/Countdown.v" Line 29: Redeclaration of ansi port <arg fmt="%s" index="1">t</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/ClockDivider.v" Line 28: Redeclaration of ansi port <arg fmt="%s" index="1">clk_out</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/Bin2BCD.v" Line 28: Redeclaration of ansi port <arg fmt="%s" index="1">one</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/BCD2Bin.v" Line 28: Redeclaration of ansi port <arg fmt="%s" index="1">bin</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 31: Redeclaration of ansi port <arg fmt="%s" index="1">ssd</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 32: Redeclaration of ansi port <arg fmt="%s" index="1">AN</arg> is not allowed -</msg> - -<msg type="warning" file="HDLCompiler" num="189" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 54: Size mismatch in connection of port <<arg fmt="%s" index="3">count</arg>>. Formal port size is <arg fmt="%d" index="2">24</arg>-bit while actual signal size is <arg fmt="%d" index="1">32</arg>-bit. -</msg> - -<msg type="warning" file="HDLCompiler" num="189" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 55: Size mismatch in connection of port <<arg fmt="%s" index="3">count</arg>>. Formal port size is <arg fmt="%d" index="2">24</arg>-bit while actual signal size is <arg fmt="%d" index="1">32</arg>-bit. -</msg> - -<msg type="warning" file="HDLCompiler" num="189" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 53: Size mismatch in connection of port <<arg fmt="%s" index="3">count</arg>>. Formal port size is <arg fmt="%d" index="2">24</arg>-bit while actual signal size is <arg fmt="%d" index="1">32</arg>-bit. -</msg> - -<msg type="warning" file="HDLCompiler" num="189" delta="unknown" >"/home/michael/Documents/School/EC311/lab4/CountdownController.v" Line 66: Size mismatch in connection of port <<arg fmt="%s" index="3">hun</arg>>. Formal port size is <arg fmt="%d" index="2">4</arg>-bit while actual signal size is <arg fmt="%d" index="1">32</arg>-bit. -</msg> +<msg type="warning" file="HDLCompiler" num="751" delta="unknown" >"X:/My Documents/ec311/ec311-lab4/Countdown.v" Line 29: Redeclaration of ansi port <arg fmt="%s" index="1">t</arg> is not allowed
+</msg>
</messages> - +
diff --git a/fuseRelaunch.cmd b/fuseRelaunch.cmd index 2314a76..d506760 100644 --- a/fuseRelaunch.cmd +++ b/fuseRelaunch.cmd @@ -1 +1 @@ --intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "/home/michael/Documents/School/EC311/lab4/Test_ContdownController_isim_beh.exe" -prj "/home/michael/Documents/School/EC311/lab4/Test_ContdownController_beh.prj" "work.Test_ContdownController" "work.glbl" +-intstyle "ise" -incremental -lib "unisims_ver" -lib "unimacro_ver" -lib "xilinxcorelib_ver" -lib "secureip" -o "X:/My Documents/ec311/ec311-lab4/TEST_Countdown_isim_beh.exe" -prj "X:/My Documents/ec311/ec311-lab4/TEST_Countdown_beh.prj" "work.TEST_Countdown" "work.glbl"
diff --git a/iseconfig/CountdownController.xreport b/iseconfig/CountdownController.xreport index f2c2a7b..38c9927 100644 --- a/iseconfig/CountdownController.xreport +++ b/iseconfig/CountdownController.xreport @@ -1,11 +1,11 @@ <?xml version='1.0' encoding='UTF-8'?> <report-views version="2.0" > <header> - <DateModified>2012-03-21T13:31:48</DateModified> + <DateModified>2012-03-21T17:32:54</DateModified> <ModuleName>CountdownController</ModuleName> <SummaryTimeStamp>Unknown</SummaryTimeStamp> - <SavedFilePath>/home/michael/Documents/School/EC311/lab4/iseconfig/CountdownController.xreport</SavedFilePath> - <ImplementationReportsDirectory>/home/michael/Documents/School/EC311/lab4/</ImplementationReportsDirectory> + <SavedFilePath>X:/My Documents/ec311/ec311-lab4/iseconfig/CountdownController.xreport</SavedFilePath> + <ImplementationReportsDirectory>X:/My Documents/ec311/ec311-lab4\</ImplementationReportsDirectory> <DateInitialized>2012-03-17T11:17:09</DateInitialized> <EnableMessageFiltering>false</EnableMessageFiltering> </header> diff --git a/iseconfig/lab4.projectmgr b/iseconfig/lab4.projectmgr index 325fe45..3a7193a 100644 --- a/iseconfig/lab4.projectmgr +++ b/iseconfig/lab4.projectmgr @@ -1,212 +1,226 @@ -<?xml version='1.0' encoding='utf-8'?> -<!--This is an ISE project configuration file.--> -<!--It holds project specific layout data for the projectmgr plugin.--> -<!--Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.--> -<Project version="2" owner="projectmgr" name="lab4" > - <!--This is an ISE project configuration file.--> - <ItemView engineview="SynthesisOnly" guiview="Source" compilemode="AutoCompile" > - <ClosedNodes> - <ClosedNodesVersion>2</ClosedNodesVersion> - <ClosedNode>/CountdownController |home|michael|Documents|School|EC311|lab4|CountdownController.v/DisplayController - DisplayController</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem>cntdwn - Countdown (/home/michael/Documents/School/EC311/lab4/Countdown.v)</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000017a000000020000000000000000000000000200000064ffffffff0000008100000003000000020000017a0000000100000003000000000000000100000003</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >true</UserChangedColumnWidths> - <CurrentItem>cntdwn - Countdown (/home/michael/Documents/School/EC311/lab4/Countdown.v)</CurrentItem> - </ItemView> - <ItemView engineview="SynthesisOnly" sourcetype="" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - <ClosedNode>Design Utilities</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem/> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem/> - </ItemView> - <ItemView guiview="File" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - </ClosedNodes> - <SelectedItems> - <SelectedItem>debouncer.v</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000000000000010000000000000000000000000000000000000287000000040101000100000000000000000000000064ffffffff0000008100000000000000040000004a0000000100000000000000640000000100000000000000790000000100000000000001600000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>debouncer.v</CurrentItem> - </ItemView> - <ItemView guiview="Library" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - <ClosedNode>work</ClosedNode> - </ClosedNodes> - <SelectedItems/> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000000000000010000000000000000000000000000000000000117000000010001000100000000000000000000000064ffffffff000000810000000000000001000001170000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>work</CurrentItem> - </ItemView> - <ItemView engineview="SynthesisOnly" sourcetype="DESUT_VERILOG" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - <ClosedNode>Configure Target Device</ClosedNode> - <ClosedNode>Implement Design/Map</ClosedNode> - <ClosedNode>Implement Design/Place & Route/Back-annotate Pin Locations</ClosedNode> - <ClosedNode>Implement Design/Place & Route/Generate IBIS Model</ClosedNode> - <ClosedNode>Implement Design/Place & Route/Generate Post-Place & Route Static Timing</ClosedNode> - <ClosedNode>Implement Design/Translate</ClosedNode> - <ClosedNode>User Constraints</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem></SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem></CurrentItem> - </ItemView> - <ItemView engineview="BehavioralSim" guiview="Source" compilemode="AutoCompile" > - <ClosedNodes> - <ClosedNodesVersion>2</ClosedNodesVersion> - <ClosedNode>/CountdownController |home|michael|Documents|School|EC311|lab4|CountdownController.v/DisplayController - DisplayController</ClosedNode> - <ClosedNode>/DisplayController |home|michael|Documents|School|EC311|lab4|DisplayController.v</ClosedNode> - <ClosedNode>/TEST_BCD2Bin |home|michael|Documents|School|EC311|lab4|TEST_BCD2Bin.v</ClosedNode> - <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode> - <ClosedNode>/TEST_ClockDivider |home|michael|Documents|School|EC311|lab4|TEST_ClockDivider.v</ClosedNode> - <ClosedNode>/TEST_DisplayController |home|michael|Documents|School|EC311|lab4|TEST_DisplayController.v</ClosedNode> - <ClosedNode>/TEST_DisplayController |home|michael|Documents|School|EC311|lab4|TEST_DisplayController.v/uut - DisplayController</ClosedNode> - <ClosedNode>/TEST_Increment |home|michael|Documents|School|EC311|lab4|TEST_Increment.v</ClosedNode> - <ClosedNode>/TEST_SevSegDisp |home|michael|Documents|School|EC311|lab4|TEST_SevSegDisp.v</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Test_ContdownController (/home/michael/Documents/School/EC311/lab4/Test_ContdownController.v)</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >4</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000018f000000020000000000000000000000000200000064ffffffff0000008100000003000000020000018f0000000100000003000000000000000100000003</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >true</UserChangedColumnWidths> - <CurrentItem>Test_ContdownController (/home/michael/Documents/School/EC311/lab4/Test_ContdownController.v)</CurrentItem> - </ItemView> - <ItemView engineview="BehavioralSim" sourcetype="" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - <ClosedNode>Design Utilities/Compile HDL Simulation Libraries</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem/> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem/> - </ItemView> - <ItemView engineview="BehavioralSim" sourcetype="DESUT_VERILOG" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Simulate Behavioral Model</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Simulate Behavioral Model</CurrentItem> - </ItemView> - <ItemView engineview="PostTransSim" guiview="Source" compilemode="AutoCompile" > - <ClosedNodes> - <ClosedNodesVersion>2</ClosedNodesVersion> - <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Unassigned User Library Modules</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Unassigned User Library Modules</CurrentItem> - </ItemView> - <ItemView engineview="PostTransSim" sourcetype="" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Compile HDL Simulation Libraries</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Compile HDL Simulation Libraries</CurrentItem> - </ItemView> - <ItemView engineview="PostMapSim" guiview="Source" compilemode="AutoCompile" > - <ClosedNodes> - <ClosedNodesVersion>2</ClosedNodesVersion> - <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Unassigned User Library Modules</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Unassigned User Library Modules</CurrentItem> - </ItemView> - <ItemView engineview="PostMapSim" sourcetype="" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Compile HDL Simulation Libraries</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Compile HDL Simulation Libraries</CurrentItem> - </ItemView> - <ItemView engineview="PostRouteSim" guiview="Source" compilemode="AutoCompile" > - <ClosedNodes> - <ClosedNodesVersion>2</ClosedNodesVersion> - <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Unassigned User Library Modules</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Unassigned User Library Modules</CurrentItem> - </ItemView> - <ItemView engineview="PostRouteSim" sourcetype="" guiview="Process" > - <ClosedNodes> - <ClosedNodesVersion>1</ClosedNodesVersion> - </ClosedNodes> - <SelectedItems> - <SelectedItem>Compile HDL Simulation Libraries</SelectedItem> - </SelectedItems> - <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition> - <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition> - <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState> - <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths> - <CurrentItem>Compile HDL Simulation Libraries</CurrentItem> - </ItemView> - <SourceProcessView>000000ff00000000000000020000010a0000009d01000000060100000002</SourceProcessView> - <CurrentView>Behavioral Simulation</CurrentView> -</Project> +<?xml version='1.0' encoding='utf-8'?>
+<!--This is an ISE project configuration file.-->
+<!--It holds project specific layout data for the projectmgr plugin.-->
+<!--Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.-->
+<Project version="2" owner="projectmgr" name="lab4" >
+ <!--This is an ISE project configuration file.-->
+ <ItemView engineview="SynthesisOnly" guiview="Source" compilemode="AutoCompile" >
+ <ClosedNodes>
+ <ClosedNodesVersion>2</ClosedNodesVersion>
+ <ClosedNode>/CountdownController |home|michael|Documents|School|EC311|lab4|CountdownController.v/DisplayController - DisplayController</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>CountdownController (X:/My Documents/ec311/ec311-lab4/CountdownController.v)</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000020200000001000000010000006400000160000000020000000000000000000000000200000064ffffffff000000810000000300000002000001600000000100000003000000000000000100000003</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >true</UserChangedColumnWidths>
+ <CurrentItem>CountdownController (X:/My Documents/ec311/ec311-lab4/CountdownController.v)</CurrentItem>
+ </ItemView>
+ <ItemView engineview="SynthesisOnly" sourcetype="" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ <ClosedNode>Design Utilities</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem/>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem/>
+ </ItemView>
+ <ItemView guiview="File" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>debouncer.v</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000000000000010000000000000000000000000000000000000263000000040101000100000000000000000000000064ffffffff0000008100000000000000040000004a00000001000000000000006400000001000000000000007900000001000000000000013c0000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>debouncer.v</CurrentItem>
+ </ItemView>
+ <ItemView guiview="Library" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ <ClosedNode>work</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems/>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000000000000010000000000000000000000000000000000000263000000010001000100000000000000000000000064ffffffff000000810000000000000001000002630000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>work</CurrentItem>
+ </ItemView>
+ <ItemView engineview="SynthesisOnly" sourcetype="DESUT_VERILOG" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ <ClosedNode>Implement Design/Map</ClosedNode>
+ <ClosedNode>Implement Design/Place & Route</ClosedNode>
+ <ClosedNode>Implement Design/Place & Route/Back-annotate Pin Locations</ClosedNode>
+ <ClosedNode>Implement Design/Place & Route/Generate IBIS Model</ClosedNode>
+ <ClosedNode>Implement Design/Place & Route/Generate Post-Place & Route Static Timing</ClosedNode>
+ <ClosedNode>Implement Design/Translate</ClosedNode>
+ <ClosedNode>Synthesize - XST</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Generate Programming File</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >7</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff000000000000000100000001000000000000000000000000000000000000000000000000e7000000010000000100000000000000000000000064ffffffff000000810000000000000001000000e70000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Generate Programming File</CurrentItem>
+ </ItemView>
+ <ItemView engineview="BehavioralSim" guiview="Source" compilemode="AutoCompile" >
+ <ClosedNodes>
+ <ClosedNodesVersion>2</ClosedNodesVersion>
+ <ClosedNode>/CountdownController |home|michael|Documents|School|EC311|lab4|CountdownController.v/DisplayController - DisplayController</ClosedNode>
+ <ClosedNode>/DisplayController |home|michael|Documents|School|EC311|lab4|DisplayController.v</ClosedNode>
+ <ClosedNode>/TEST_BCD2Bin |home|michael|Documents|School|EC311|lab4|TEST_BCD2Bin.v</ClosedNode>
+ <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode>
+ <ClosedNode>/TEST_ClockDivider |home|michael|Documents|School|EC311|lab4|TEST_ClockDivider.v</ClosedNode>
+ <ClosedNode>/TEST_DisplayController |home|michael|Documents|School|EC311|lab4|TEST_DisplayController.v</ClosedNode>
+ <ClosedNode>/TEST_DisplayController |home|michael|Documents|School|EC311|lab4|TEST_DisplayController.v/uut - DisplayController</ClosedNode>
+ <ClosedNode>/TEST_Increment |home|michael|Documents|School|EC311|lab4|TEST_Increment.v</ClosedNode>
+ <ClosedNode>/TEST_SevSegDisp |home|michael|Documents|School|EC311|lab4|TEST_SevSegDisp.v</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>TEST_Increment (X:/My Documents/ec311/ec311-lab4/TEST_Increment.v)</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >19</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >120</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000020200000001000000010000006400000170000000020000000000000000000000000200000064ffffffff000000810000000300000002000001700000000100000003000000000000000100000003</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >true</UserChangedColumnWidths>
+ <CurrentItem>TEST_Increment (X:/My Documents/ec311/ec311-lab4/TEST_Increment.v)</CurrentItem>
+ </ItemView>
+ <ItemView engineview="BehavioralSim" sourcetype="" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ <ClosedNode>Design Utilities/Compile HDL Simulation Libraries</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <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>
+ </ItemView>
+ <ItemView engineview="BehavioralSim" sourcetype="DESUT_VERILOG" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ </ClosedNodes>
+ <SelectedItems>
+ <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>
+ </ItemView>
+ <ItemView engineview="PostTransSim" guiview="Source" compilemode="AutoCompile" >
+ <ClosedNodes>
+ <ClosedNodesVersion>2</ClosedNodesVersion>
+ <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Unassigned User Library Modules</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Unassigned User Library Modules</CurrentItem>
+ </ItemView>
+ <ItemView engineview="PostTransSim" sourcetype="" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Compile HDL Simulation Libraries</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Compile HDL Simulation Libraries</CurrentItem>
+ </ItemView>
+ <ItemView engineview="PostMapSim" guiview="Source" compilemode="AutoCompile" >
+ <ClosedNodes>
+ <ClosedNodesVersion>2</ClosedNodesVersion>
+ <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Unassigned User Library Modules</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Unassigned User Library Modules</CurrentItem>
+ </ItemView>
+ <ItemView engineview="PostMapSim" sourcetype="" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Compile HDL Simulation Libraries</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Compile HDL Simulation Libraries</CurrentItem>
+ </ItemView>
+ <ItemView engineview="PostRouteSim" guiview="Source" compilemode="AutoCompile" >
+ <ClosedNodes>
+ <ClosedNodesVersion>2</ClosedNodesVersion>
+ <ClosedNode>/TEST_Bin2BCD |home|michael|Documents|School|EC311|lab4|TEST_Bin2BCD.v</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Unassigned User Library Modules</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff0000000000000001000000010000000000000000000000000000000002020000000100000001000000640000010d000000020000000000000000000000000200000064ffffffff0000008100000003000000020000010d0000000100000003000000000000000100000003</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Unassigned User Library Modules</CurrentItem>
+ </ItemView>
+ <ItemView engineview="PostRouteSim" sourcetype="" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ </ClosedNodes>
+ <SelectedItems>
+ <SelectedItem>Compile HDL Simulation Libraries</SelectedItem>
+ </SelectedItems>
+ <ScrollbarPosition orientation="vertical" >0</ScrollbarPosition>
+ <ScrollbarPosition orientation="horizontal" >0</ScrollbarPosition>
+ <ViewHeaderState orientation="horizontal" >000000ff00000000000000010000000100000000000000000000000000000000000000000000000183000000010000000100000000000000000000000064ffffffff000000810000000000000001000001830000000100000000</ViewHeaderState>
+ <UserChangedColumnWidths orientation="horizontal" >false</UserChangedColumnWidths>
+ <CurrentItem>Compile HDL Simulation Libraries</CurrentItem>
+ </ItemView>
+ <SourceProcessView>000000ff0000000000000002000000660000005a01000000060100000002</SourceProcessView>
+ <CurrentView>Implementation</CurrentView>
+ <ItemView engineview="SynthesisOnly" sourcetype="DESUT_UCF" guiview="Process" >
+ <ClosedNodes>
+ <ClosedNodesVersion>1</ClosedNodesVersion>
+ <ClosedNode>User Constraints</ClosedNode>
+ </ClosedNodes>
+ <SelectedItems>
+ <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>
+ </ItemView>
+</Project>
@@ -1,3 +1,3 @@ -onerror {resume} -wave add / -run 1000ns; +onerror {resume}
+wave add /
+run 10000ns;
@@ -1,18 +1,10 @@ -ISim log file -Running: /home/michael/Documents/School/EC311/lab4/Test_ContdownController_isim_beh.exe -intstyle ise -gui -tclbatch isim.cmd -wdb /home/michael/Documents/School/EC311/lab4/Test_ContdownController_isim_beh.wdb -ISim O.87xd (signature 0x8ddf5b5d) -WARNING: A WEBPACK license was found. -WARNING: Please use Xilinx License Configuration Manager to check out a full ISim license. -WARNING: ISim will run in Lite mode. Please refer to the ISim documentation for more information on the differences between the Lite and the Full version. -This is a Lite version of ISim. -WARNING: For instance uut/dbc/, width 24 of formal port count is not equal to width 32 of actual constant. -WARNING: For instance uut/sec/, width 24 of formal port count is not equal to width 32 of actual constant. -WARNING: For instance uut/dcc/, width 24 of formal port count is not equal to width 32 of actual constant. -WARNING: For instance uut/bcd2b/, width 4 of formal port hun is not equal to width 32 of actual constant. -Time resolution is 1 ps -# onerror resume -# wave add / -# run 1000ns -Simulator is doing circuit initialization process. -Finished circuit initialization process. -# exit 0 +ISim log file
+Running: X:\My Documents\ec311\ec311-lab4\TEST_Countdown_isim_beh.exe -intstyle ise -gui -tclbatch isim.cmd -wdb X:/My Documents/ec311/ec311-lab4/TEST_Countdown_isim_beh.wdb
+ISim O.76xd (signature 0xc3576ebc)
+This is a Full version of ISim.
+Time resolution is 1 ps
+# onerror resume
+# wave add /
+# run 10000ns
+Simulator is doing circuit initialization process.
+Finished circuit initialization process.
diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg b/isim/TEST_Countdown_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg Binary files differindex 909cd06..d931a2f 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg +++ b/isim/TEST_Countdown_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/isimcrash.log b/isim/TEST_Countdown_isim_beh.exe.sim/isimcrash.log index e69de29..e69de29 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/isimcrash.log +++ b/isim/TEST_Countdown_isim_beh.exe.sim/isimcrash.log diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/isimkernel.log b/isim/TEST_Countdown_isim_beh.exe.sim/isimkernel.log index cfb9573..33a80ac 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/isimkernel.log +++ b/isim/TEST_Countdown_isim_beh.exe.sim/isimkernel.log @@ -1,29 +1,28 @@ -Command line: - TEST_Countdown_isim_beh.exe - -simmode gui - -simrunnum 0 - -socket 46742 - -Wed Mar 21 13:10:41 2012 - - - Elaboration Time: 0.01 sec - - Current Memory Usage: 181.268 Meg - - Total Signals : 18 - Total Nets : 32 - Total Signal Drivers : 10 - Total Blocks : 3 - Total Primitive Blocks : 2 - Total Processes : 16 - Total Traceable Variables : 25 - Total Scalar Nets and Variables : 140 -Total Line Count : 40 - - Total Simulation Time: 0.29 sec - - Current Memory Usage: 256.77 Meg - -Wed Mar 21 13:11:31 2012 - +Command line:
+ TEST_Countdown_isim_beh.exe
+ -simmode gui
+ -simrunnum 0
+ -socket 52579
+
+Wed Mar 21 18:25:01 2012
+
+
+ Elaboration Time: 0.093601 sec
+
+ Current Memory Usage: 820.527 Meg
+
+ Total Signals : 18
+ Total Nets : 32
+ Total Signal Drivers : 10
+ Total Blocks : 3
+ Total Primitive Blocks : 2
+ Total Processes : 14
+ Total Traceable Variables : 25
+ Total Scalar Nets and Variables : 140
+
+ Total Simulation Time: 0.140401 sec
+
+ Current Memory Usage: 820.527 Meg
+
+Wed Mar 21 18:25:20 2012
+
diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/netId.dat b/isim/TEST_Countdown_isim_beh.exe.sim/netId.dat Binary files differindex 20588b3..20588b3 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/netId.dat +++ b/isim/TEST_Countdown_isim_beh.exe.sim/netId.dat diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/tmp_save/_1 b/isim/TEST_Countdown_isim_beh.exe.sim/tmp_save/_1 Binary files differindex 9bcf6d7..65981e3 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/tmp_save/_1 +++ b/isim/TEST_Countdown_isim_beh.exe.sim/tmp_save/_1 diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.c b/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.c index e25a621..0dc330e 100644..100755 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.c +++ b/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.c @@ -1,36 +1,36 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -#include "xsi.h" - -struct XSI_INFO xsi_info; - - - -int main(int argc, char **argv) -{ - xsi_init_design(argc, argv); - xsi_register_info(&xsi_info); - - xsi_register_min_prec_unit(-12); - work_m_06453055231304268951_4281377536_init(); - work_m_01236816096418509971_3448823162_init(); - work_m_16541823861846354283_2073120511_init(); - - - xsi_register_tops("work_m_01236816096418509971_3448823162"); - xsi_register_tops("work_m_16541823861846354283_2073120511"); - - - return xsi_run_simulation(argc, argv); - -} +/**********************************************************************/
+/* ____ ____ */
+/* / /\/ / */
+/* /___/ \ / */
+/* \ \ \/ */
+/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */
+/* / / All Right Reserved. */
+/* /---/ /\ */
+/* \ \ / \ */
+/* \___\/\___\ */
+/***********************************************************************/
+
+#include "xsi.h"
+
+struct XSI_INFO xsi_info;
+
+
+
+int main(int argc, char **argv)
+{
+ xsi_init_design(argc, argv);
+ xsi_register_info(&xsi_info);
+
+ xsi_register_min_prec_unit(-12);
+ work_m_00000000000165543063_4281377536_init();
+ work_m_00000000003481449619_3448823162_init();
+ work_m_00000000004134447467_2073120511_init();
+
+
+ xsi_register_tops("work_m_00000000003481449619_3448823162");
+ xsi_register_tops("work_m_00000000004134447467_2073120511");
+
+
+ return xsi_run_simulation(argc, argv);
+
+}
diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.lin64.o b/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.lin64.o Binary files differdeleted file mode 100644 index 4fde3cb..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/TEST_Countdown_isim_beh.exe_main.lin64.o +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.c b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.c deleted file mode 100644 index b813dd5..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.c +++ /dev/null @@ -1,329 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/TEST_Countdown.v"; -static int ng1[] = {0, 0}; -static int ng2[] = {218, 0}; -static int ng3[] = {255, 0}; -static int ng4[] = {10, 0}; -static int ng5[] = {1, 0}; - - - -static void Initial_46_0(char *t0) -{ - char t6[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - char *t9; - char *t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - char *t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - unsigned int t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - unsigned int t28; - char *t29; - -LAB0: t1 = (t0 + 3000U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(46, ng0); - -LAB4: xsi_set_current_line(48, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1448); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(49, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1608); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(50, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1768); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(51, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 8); - xsi_set_current_line(54, ng0); - t2 = (t0 + 2808); - xsi_process_wait(t2, 50000LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(58, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 8); - xsi_set_current_line(58, ng0); - t2 = (t0 + 2808); - xsi_process_wait(t2, 50000LL); - *((char **)t1) = &&LAB6; - goto LAB1; - -LAB6: xsi_set_current_line(60, ng0); - xsi_set_current_line(60, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 2088); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 8); - -LAB7: t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng3))); - memset(t6, 0, 8); - t7 = (t4 + 4); - if (*((unsigned int *)t7) != 0) - goto LAB9; - -LAB8: t8 = (t5 + 4); - if (*((unsigned int *)t8) != 0) - goto LAB9; - -LAB12: if (*((unsigned int *)t4) < *((unsigned int *)t5)) - goto LAB10; - -LAB11: t10 = (t6 + 4); - t11 = *((unsigned int *)t10); - t12 = (~(t11)); - t13 = *((unsigned int *)t6); - t14 = (t13 & t12); - t15 = (t14 != 0); - if (t15 > 0) - goto LAB13; - -LAB14: goto LAB1; - -LAB9: t9 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t9) = 1; - goto LAB11; - -LAB10: *((unsigned int *)t6) = 1; - goto LAB11; - -LAB13: xsi_set_current_line(60, ng0); - -LAB15: xsi_set_current_line(61, ng0); - t16 = (t0 + 2808); - xsi_process_wait(t16, 5000LL); - *((char **)t1) = &&LAB16; - goto LAB1; - -LAB16: xsi_set_current_line(61, ng0); - t2 = (t0 + 1448); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t4 + 4); - t11 = *((unsigned int *)t5); - t12 = (~(t11)); - t13 = *((unsigned int *)t4); - t14 = (t13 & t12); - t15 = (t14 & 1U); - if (t15 != 0) - goto LAB20; - -LAB18: if (*((unsigned int *)t5) == 0) - goto LAB17; - -LAB19: t7 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t7) = 1; - -LAB20: t8 = (t6 + 4); - t9 = (t4 + 4); - t17 = *((unsigned int *)t4); - t18 = (~(t17)); - *((unsigned int *)t6) = t18; - *((unsigned int *)t8) = 0; - if (*((unsigned int *)t9) != 0) - goto LAB22; - -LAB21: t23 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t23 & 1U); - t24 = *((unsigned int *)t8); - *((unsigned int *)t8) = (t24 & 1U); - t10 = (t0 + 1448); - xsi_vlogvar_assign_value(t10, t6, 0, 0, 1); - xsi_set_current_line(62, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng4))); - memset(t6, 0, 8); - t7 = (t4 + 4); - t8 = (t5 + 4); - t11 = *((unsigned int *)t4); - t12 = *((unsigned int *)t5); - t13 = (t11 ^ t12); - t14 = *((unsigned int *)t7); - t15 = *((unsigned int *)t8); - t17 = (t14 ^ t15); - t18 = (t13 | t17); - t19 = *((unsigned int *)t7); - t20 = *((unsigned int *)t8); - t21 = (t19 | t20); - t22 = (~(t21)); - t23 = (t18 & t22); - if (t23 != 0) - goto LAB26; - -LAB23: if (t21 != 0) - goto LAB25; - -LAB24: *((unsigned int *)t6) = 1; - -LAB26: t10 = (t6 + 4); - t24 = *((unsigned int *)t10); - t25 = (~(t24)); - t26 = *((unsigned int *)t6); - t27 = (t26 & t25); - t28 = (t27 != 0); - if (t28 > 0) - goto LAB27; - -LAB28: -LAB29: xsi_set_current_line(60, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng5))); - memset(t6, 0, 8); - xsi_vlog_unsigned_add(t6, 32, t4, 8, t5, 32); - t7 = (t0 + 2088); - xsi_vlogvar_assign_value(t7, t6, 0, 0, 8); - goto LAB7; - -LAB17: *((unsigned int *)t6) = 1; - goto LAB20; - -LAB22: t19 = *((unsigned int *)t6); - t20 = *((unsigned int *)t9); - *((unsigned int *)t6) = (t19 | t20); - t21 = *((unsigned int *)t8); - t22 = *((unsigned int *)t9); - *((unsigned int *)t8) = (t21 | t22); - goto LAB21; - -LAB25: t9 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t9) = 1; - goto LAB26; - -LAB27: xsi_set_current_line(62, ng0); - -LAB30: xsi_set_current_line(63, ng0); - t16 = ((char*)((ng5))); - t29 = (t0 + 1768); - xsi_vlogvar_assign_value(t29, t16, 0, 0, 1); - xsi_set_current_line(63, ng0); - t2 = (t0 + 2808); - xsi_process_wait(t2, 5000LL); - *((char **)t1) = &&LAB31; - goto LAB1; - -LAB31: xsi_set_current_line(63, ng0); - t2 = (t0 + 1448); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t4 + 4); - t11 = *((unsigned int *)t5); - t12 = (~(t11)); - t13 = *((unsigned int *)t4); - t14 = (t13 & t12); - t15 = (t14 & 1U); - if (t15 != 0) - goto LAB35; - -LAB33: if (*((unsigned int *)t5) == 0) - goto LAB32; - -LAB34: t7 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t7) = 1; - -LAB35: t8 = (t6 + 4); - t9 = (t4 + 4); - t17 = *((unsigned int *)t4); - t18 = (~(t17)); - *((unsigned int *)t6) = t18; - *((unsigned int *)t8) = 0; - if (*((unsigned int *)t9) != 0) - goto LAB37; - -LAB36: t23 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t23 & 1U); - t24 = *((unsigned int *)t8); - *((unsigned int *)t8) = (t24 & 1U); - t10 = (t0 + 1448); - xsi_vlogvar_assign_value(t10, t6, 0, 0, 1); - xsi_set_current_line(63, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1768); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - goto LAB29; - -LAB32: *((unsigned int *)t6) = 1; - goto LAB35; - -LAB37: t19 = *((unsigned int *)t6); - t20 = *((unsigned int *)t9); - *((unsigned int *)t6) = (t19 | t20); - t21 = *((unsigned int *)t8); - t22 = *((unsigned int *)t9); - *((unsigned int *)t8) = (t21 | t22); - goto LAB36; - -} - - -extern void work_m_01236816096418509971_3448823162_init() -{ - static char *pe[] = {(void *)Initial_46_0}; - xsi_register_didat("work_m_01236816096418509971_3448823162", "isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.didat"); - xsi_register_executes(pe); -} diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.didat b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.didat Binary files differdeleted file mode 100644 index beb4669..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.didat +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.lin64.o b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.lin64.o Binary files differdeleted file mode 100644 index 34389cf..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_01236816096418509971_3448823162.lin64.o +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c deleted file mode 100644 index a5af715..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c +++ /dev/null @@ -1,279 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/Countdown.v"; -static int ng1[] = {1, 0}; -static int ng2[] = {0, 0}; - - - -static void Always_32_0(char *t0) -{ - char t4[8]; - char *t1; - char *t2; - char *t3; - char *t5; - char *t6; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - char *t14; - char *t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - -LAB0: t1 = (t0 + 3000U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(32, ng0); - t2 = (t0 + 4064); - *((int *)t2) = 1; - t3 = (t0 + 3032); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(32, ng0); - -LAB5: xsi_set_current_line(33, ng0); - t5 = (t0 + 2088); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memset(t4, 0, 8); - t8 = (t7 + 4); - t9 = *((unsigned int *)t8); - t10 = (~(t9)); - t11 = *((unsigned int *)t7); - t12 = (t11 & t10); - t13 = (t12 & 1U); - if (t13 != 0) - goto LAB9; - -LAB7: if (*((unsigned int *)t8) == 0) - goto LAB6; - -LAB8: t14 = (t4 + 4); - *((unsigned int *)t4) = 1; - *((unsigned int *)t14) = 1; - -LAB9: t15 = (t4 + 4); - t16 = *((unsigned int *)t15); - t17 = (~(t16)); - t18 = *((unsigned int *)t4); - t19 = (t18 & t17); - t20 = (t19 != 0); - if (t20 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(35, ng0); - -LAB14: xsi_set_current_line(36, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t5 = *((char **)t3); - t6 = (t0 + 1928); - xsi_vlogvar_assign_value(t6, t5, 0, 0, 8); - -LAB12: goto LAB2; - -LAB6: *((unsigned int *)t4) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(33, ng0); - -LAB13: xsi_set_current_line(34, ng0); - t21 = (t0 + 1528U); - t22 = *((char **)t21); - t21 = (t0 + 1928); - xsi_vlogvar_assign_value(t21, t22, 0, 0, 8); - goto LAB12; - -} - -static void Always_40_1(char *t0) -{ - char t17[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - unsigned int t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - char *t13; - char *t14; - char *t15; - char *t16; - char *t18; - -LAB0: t1 = (t0 + 3248U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(40, ng0); - t2 = (t0 + 4080); - *((int *)t2) = 1; - t3 = (t0 + 3280); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(40, ng0); - -LAB5: xsi_set_current_line(41, ng0); - t4 = (t0 + 2088); - t5 = (t4 + 56U); - t6 = *((char **)t5); - t7 = (t6 + 4); - t8 = *((unsigned int *)t7); - t9 = (~(t8)); - t10 = *((unsigned int *)t6); - t11 = (t10 & t9); - t12 = (t11 != 0); - if (t12 > 0) - goto LAB6; - -LAB7: xsi_set_current_line(43, ng0); - -LAB10: xsi_set_current_line(44, ng0); - t2 = (t0 + 1528U); - t3 = *((char **)t2); - t2 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t2, t3, 0, 0, 8, 0LL); - -LAB8: goto LAB2; - -LAB6: xsi_set_current_line(41, ng0); - -LAB9: xsi_set_current_line(42, ng0); - t13 = (t0 + 1928); - t14 = (t13 + 56U); - t15 = *((char **)t14); - t16 = ((char*)((ng1))); - memset(t17, 0, 8); - xsi_vlog_unsigned_minus(t17, 32, t15, 8, t16, 32); - t18 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t18, t17, 0, 0, 8, 0LL); - goto LAB8; - -} - -static void Always_48_2(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - -LAB0: t1 = (t0 + 3496U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(48, ng0); - t2 = (t0 + 4096); - *((int *)t2) = 1; - t3 = (t0 + 3528); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(48, ng0); - -LAB5: xsi_set_current_line(49, ng0); - t4 = ((char*)((ng1))); - t5 = (t0 + 2088); - xsi_vlogvar_assign_value(t5, t4, 0, 0, 1); - goto LAB2; - -} - -static void Always_52_3(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - -LAB0: t1 = (t0 + 3744U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(52, ng0); - t2 = (t0 + 4112); - *((int *)t2) = 1; - t3 = (t0 + 3776); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(52, ng0); - -LAB5: xsi_set_current_line(53, ng0); - t4 = ((char*)((ng2))); - t5 = (t0 + 2088); - xsi_vlogvar_assign_value(t5, t4, 0, 0, 1); - xsi_set_current_line(54, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 8); - goto LAB2; - -} - - -extern void work_m_06453055231304268951_4281377536_init() -{ - static char *pe[] = {(void *)Always_32_0,(void *)Always_40_1,(void *)Always_48_2,(void *)Always_52_3}; - xsi_register_didat("work_m_06453055231304268951_4281377536", "isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat"); - xsi_register_executes(pe); -} diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat Binary files differdeleted file mode 100644 index 94c37ef..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o Binary files differdeleted file mode 100644 index f3118d5..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c deleted file mode 100644 index e4b1ef9..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c +++ /dev/null @@ -1,337 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/opt/Xilinx/13.4/ISE_DS/ISE/verilog/src/glbl.v"; -static unsigned int ng1[] = {1U, 0U}; -static unsigned int ng2[] = {0U, 0U}; - - - -static void NetDecl_16_0(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - unsigned int t8; - unsigned int t9; - char *t10; - unsigned int t11; - unsigned int t12; - char *t13; - unsigned int t14; - unsigned int t15; - char *t16; - -LAB0: t1 = (t0 + 6952U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(16, ng0); - t2 = (t0 + 1960U); - t3 = *((char **)t2); - t2 = (t0 + 8640); - t4 = (t2 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memset(t7, 0, 8); - t8 = 1U; - t9 = t8; - t10 = (t3 + 4); - t11 = *((unsigned int *)t3); - t8 = (t8 & t11); - t12 = *((unsigned int *)t10); - t9 = (t9 & t12); - t13 = (t7 + 4); - t14 = *((unsigned int *)t7); - *((unsigned int *)t7) = (t14 | t8); - t15 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t15 | t9); - xsi_driver_vfirst_trans(t2, 0, 0U); - t16 = (t0 + 8512); - *((int *)t16) = 1; - -LAB1: return; -} - -static void Cont_48_1(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7200U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(48, ng0); - t2 = (t0 + 3640); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8704); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8528); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Cont_49_2(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7448U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(49, ng0); - t2 = (t0 + 3800); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8768); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8544); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Cont_50_3(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7696U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(50, ng0); - t2 = (t0 + 3960); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8832); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8560); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Initial_52_4(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - -LAB0: t1 = (t0 + 7944U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(52, ng0); - -LAB4: xsi_set_current_line(53, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3640); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(54, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3960); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(55, ng0); - t2 = (t0 + 7752); - xsi_process_wait(t2, 100000LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(56, ng0); - t3 = ((char*)((ng2))); - t4 = (t0 + 3640); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 1); - xsi_set_current_line(57, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 3960); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - goto LAB1; - -} - -static void Initial_60_5(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - -LAB0: t1 = (t0 + 8192U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(60, ng0); - -LAB4: xsi_set_current_line(61, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3800); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(62, ng0); - t2 = (t0 + 8000); - xsi_process_wait(t2, 0LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(63, ng0); - t3 = ((char*)((ng2))); - t4 = (t0 + 3800); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 1); - goto LAB1; - -} - - -extern void work_m_16541823861846354283_2073120511_init() -{ - static char *pe[] = {(void *)NetDecl_16_0,(void *)Cont_48_1,(void *)Cont_49_2,(void *)Cont_50_3,(void *)Initial_52_4,(void *)Initial_60_5}; - xsi_register_didat("work_m_16541823861846354283_2073120511", "isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat"); - xsi_register_executes(pe); -} diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat Binary files differdeleted file mode 100644 index 0d3c6aa..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat +++ /dev/null diff --git a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o b/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o Binary files differdeleted file mode 100644 index 2c70287..0000000 --- a/isim/TEST_Countdown_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg b/isim/Test_ContdownController_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg Binary files differindex 63c0de9..821de82 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg +++ b/isim/Test_ContdownController_isim_beh.exe.sim/ISimEngine-DesignHierarchy.dbg diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/isimcrash.log b/isim/Test_ContdownController_isim_beh.exe.sim/isimcrash.log index e69de29..e69de29 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/isimcrash.log +++ b/isim/Test_ContdownController_isim_beh.exe.sim/isimcrash.log diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/isimkernel.log b/isim/Test_ContdownController_isim_beh.exe.sim/isimkernel.log index f0d01ab..182e9b9 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/isimkernel.log +++ b/isim/Test_ContdownController_isim_beh.exe.sim/isimkernel.log @@ -1,29 +1,28 @@ -Command line: - Test_ContdownController_isim_beh.exe - -simmode gui - -simrunnum 0 - -socket 59475 - -Wed Mar 21 13:13:02 2012 - - - Elaboration Time: 0.02 sec - - Current Memory Usage: 181.703 Meg - - Total Signals : 67 - Total Nets : 223 - Total Signal Drivers : 32 - Total Blocks : 16 - Total Primitive Blocks : 13 - Total Processes : 55 - Total Traceable Variables : 60 - Total Scalar Nets and Variables : 592 -Total Line Count : 190 - - Total Simulation Time: 0.07 sec - - Current Memory Usage: 257.204 Meg - -Wed Mar 21 13:14:04 2012 - +Command line:
+ Test_ContdownController_isim_beh.exe
+ -simmode gui
+ -simrunnum 0
+ -socket 52312
+
+Wed Mar 21 17:37:25 2012
+
+
+ Elaboration Time: 0.1092 sec
+
+ Current Memory Usage: 820.543 Meg
+
+ Total Signals : 67
+ Total Nets : 223
+ Total Signal Drivers : 32
+ Total Blocks : 16
+ Total Primitive Blocks : 13
+ Total Processes : 55
+ Total Traceable Variables : 60
+ Total Scalar Nets and Variables : 592
+
+ Total Simulation Time: 0.218401 sec
+
+ Current Memory Usage: 1135.12 Meg
+
+Wed Mar 21 17:38:26 2012
+
diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/netId.dat b/isim/Test_ContdownController_isim_beh.exe.sim/netId.dat Binary files differindex 71bf847..71bf847 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/netId.dat +++ b/isim/Test_ContdownController_isim_beh.exe.sim/netId.dat diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/tmp_save/_1 b/isim/Test_ContdownController_isim_beh.exe.sim/tmp_save/_1 Binary files differindex 30c7155..fc419a4 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/tmp_save/_1 +++ b/isim/Test_ContdownController_isim_beh.exe.sim/tmp_save/_1 diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.c index c54e658..5e02839 100644..100755 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.c +++ b/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.c @@ -1,44 +1,44 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -#include "xsi.h" - -struct XSI_INFO xsi_info; - - - -int main(int argc, char **argv) -{ - xsi_init_design(argc, argv); - xsi_register_info(&xsi_info); - - xsi_register_min_prec_unit(-12); - work_m_09461933616065074075_2531671071_init(); - work_m_06185630164696979556_3598138731_init(); - work_m_14878824473863214981_2647877144_init(); - work_m_17579661360444318263_0092613024_init(); - work_m_06453055231304268951_4281377536_init(); - work_m_14079594305330756291_2618506667_init(); - work_m_01832328269938973087_1606112044_init(); - work_m_14181161885881575918_3845763652_init(); - work_m_08578567565259243700_1151371814_init(); - work_m_09637473393135046702_3413554552_init(); - work_m_16541823861846354283_2073120511_init(); - - - xsi_register_tops("work_m_09637473393135046702_3413554552"); - xsi_register_tops("work_m_16541823861846354283_2073120511"); - - - return xsi_run_simulation(argc, argv); - -} +/**********************************************************************/
+/* ____ ____ */
+/* / /\/ / */
+/* /___/ \ / */
+/* \ \ \/ */
+/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */
+/* / / All Right Reserved. */
+/* /---/ /\ */
+/* \ \ / \ */
+/* \___\/\___\ */
+/***********************************************************************/
+
+#include "xsi.h"
+
+struct XSI_INFO xsi_info;
+
+
+
+int main(int argc, char **argv)
+{
+ xsi_init_design(argc, argv);
+ xsi_register_info(&xsi_info);
+
+ xsi_register_min_prec_unit(-12);
+ work_m_00000000000165860251_2531671071_init();
+ work_m_00000000002796836964_3598138731_init();
+ work_m_00000000000268523397_2647877144_init();
+ work_m_00000000003304170039_0092613024_init();
+ work_m_00000000000165543063_4281377536_init();
+ work_m_00000000002128231107_2618506667_init();
+ work_m_00000000002040420767_1606112044_init();
+ work_m_00000000002789714414_3845763652_init();
+ work_m_00000000003640066228_1151371814_init();
+ work_m_00000000001377292334_3413554552_init();
+ work_m_00000000004134447467_2073120511_init();
+
+
+ xsi_register_tops("work_m_00000000001377292334_3413554552");
+ xsi_register_tops("work_m_00000000004134447467_2073120511");
+
+
+ return xsi_run_simulation(argc, argv);
+
+}
diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.lin64.o Binary files differdeleted file mode 100644 index 602f1f5..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/Test_ContdownController_isim_beh.exe_main.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.c deleted file mode 100644 index e594c98..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.c +++ /dev/null @@ -1,205 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/SevSegDisp.v"; -static unsigned int ng1[] = {0U, 0U}; -static unsigned int ng2[] = {1U, 0U}; -static unsigned int ng3[] = {79U, 0U}; -static unsigned int ng4[] = {2U, 0U}; -static unsigned int ng5[] = {18U, 0U}; -static unsigned int ng6[] = {3U, 0U}; -static unsigned int ng7[] = {6U, 0U}; -static unsigned int ng8[] = {4U, 0U}; -static unsigned int ng9[] = {76U, 0U}; -static unsigned int ng10[] = {5U, 0U}; -static unsigned int ng11[] = {36U, 0U}; -static unsigned int ng12[] = {32U, 0U}; -static unsigned int ng13[] = {7U, 0U}; -static unsigned int ng14[] = {15U, 0U}; -static unsigned int ng15[] = {8U, 0U}; -static unsigned int ng16[] = {9U, 0U}; -static unsigned int ng17[] = {12U, 0U}; -static unsigned int ng18[] = {26U, 0U}; - - - -static void Always_29_0(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - int t6; - char *t7; - char *t8; - -LAB0: t1 = (t0 + 2360U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(29, ng0); - t2 = (t0 + 2680); - *((int *)t2) = 1; - t3 = (t0 + 2392); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(29, ng0); - -LAB5: xsi_set_current_line(30, ng0); - t4 = (t0 + 1048U); - t5 = *((char **)t4); - -LAB6: t4 = ((char*)((ng1))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t4, 4); - if (t6 == 1) - goto LAB7; - -LAB8: t2 = ((char*)((ng2))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB9; - -LAB10: t2 = ((char*)((ng4))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB11; - -LAB12: t2 = ((char*)((ng6))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB13; - -LAB14: t2 = ((char*)((ng8))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB15; - -LAB16: t2 = ((char*)((ng10))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB17; - -LAB18: t2 = ((char*)((ng7))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB19; - -LAB20: t2 = ((char*)((ng13))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB21; - -LAB22: t2 = ((char*)((ng15))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB23; - -LAB24: t2 = ((char*)((ng16))); - t6 = xsi_vlog_unsigned_case_compare(t5, 4, t2, 4); - if (t6 == 1) - goto LAB25; - -LAB26: -LAB28: -LAB27: xsi_set_current_line(41, ng0); - t2 = ((char*)((ng18))); - t3 = (t0 + 1448); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 7); - -LAB29: goto LAB2; - -LAB7: xsi_set_current_line(31, ng0); - t7 = ((char*)((ng2))); - t8 = (t0 + 1448); - xsi_vlogvar_assign_value(t8, t7, 0, 0, 7); - goto LAB29; - -LAB9: xsi_set_current_line(32, ng0); - t3 = ((char*)((ng3))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB11: xsi_set_current_line(33, ng0); - t3 = ((char*)((ng5))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB13: xsi_set_current_line(34, ng0); - t3 = ((char*)((ng7))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB15: xsi_set_current_line(35, ng0); - t3 = ((char*)((ng9))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB17: xsi_set_current_line(36, ng0); - t3 = ((char*)((ng11))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB19: xsi_set_current_line(37, ng0); - t3 = ((char*)((ng12))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB21: xsi_set_current_line(38, ng0); - t3 = ((char*)((ng14))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB23: xsi_set_current_line(39, ng0); - t3 = ((char*)((ng1))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -LAB25: xsi_set_current_line(40, ng0); - t3 = ((char*)((ng17))); - t4 = (t0 + 1448); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 7); - goto LAB29; - -} - - -extern void work_m_01832328269938973087_1606112044_init() -{ - static char *pe[] = {(void *)Always_29_0}; - xsi_register_didat("work_m_01832328269938973087_1606112044", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.didat Binary files differdeleted file mode 100644 index a25c52c..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.lin64.o Binary files differdeleted file mode 100644 index 305d62a..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_01832328269938973087_1606112044.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.c deleted file mode 100644 index c798e64..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.c +++ /dev/null @@ -1,718 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/debouncer.v"; -static int ng1[] = {1, 0}; -static int ng2[] = {0, 0}; -static unsigned int ng3[] = {100000U, 0U}; -static unsigned int ng4[] = {1U, 0U}; - - - -static void Always_16_0(char *t0) -{ - char t6[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t28; - char *t29; - -LAB0: t1 = (t0 + 3320U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(16, ng0); - t2 = (t0 + 4136); - *((int *)t2) = 1; - t3 = (t0 + 3352); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(16, ng0); - -LAB5: xsi_set_current_line(17, ng0); - t4 = (t0 + 1208U); - t5 = *((char **)t4); - t4 = ((char*)((ng1))); - memset(t6, 0, 8); - t7 = (t5 + 4); - t8 = (t4 + 4); - t9 = *((unsigned int *)t5); - t10 = *((unsigned int *)t4); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t7); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t7); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB9; - -LAB6: if (t18 != 0) - goto LAB8; - -LAB7: *((unsigned int *)t6) = 1; - -LAB9: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(21, ng0); - -LAB14: xsi_set_current_line(22, ng0); - t2 = (t0 + 1368U); - t3 = *((char **)t2); - t2 = (t0 + 2088); - xsi_vlogvar_wait_assign_value(t2, t3, 0, 0, 1, 0LL); - xsi_set_current_line(23, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 2248); - xsi_vlogvar_wait_assign_value(t5, t4, 0, 0, 1, 0LL); - -LAB12: goto LAB2; - -LAB8: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(17, ng0); - -LAB13: xsi_set_current_line(18, ng0); - t28 = ((char*)((ng2))); - t29 = (t0 + 2088); - xsi_vlogvar_wait_assign_value(t29, t28, 0, 0, 1, 0LL); - xsi_set_current_line(19, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 2248); - xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 1, 0LL); - goto LAB12; - -} - -static void Always_28_1(char *t0) -{ - char t6[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t28; - char *t29; - -LAB0: t1 = (t0 + 3568U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(28, ng0); - t2 = (t0 + 4152); - *((int *)t2) = 1; - t3 = (t0 + 3600); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(28, ng0); - -LAB5: xsi_set_current_line(29, ng0); - t4 = (t0 + 1208U); - t5 = *((char **)t4); - t4 = ((char*)((ng1))); - memset(t6, 0, 8); - t7 = (t5 + 4); - t8 = (t4 + 4); - t9 = *((unsigned int *)t5); - t10 = *((unsigned int *)t4); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t7); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t7); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB9; - -LAB6: if (t18 != 0) - goto LAB8; - -LAB7: *((unsigned int *)t6) = 1; - -LAB9: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(32, ng0); - -LAB14: xsi_set_current_line(33, ng0); - t2 = (t0 + 2248); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 2408); - xsi_vlogvar_wait_assign_value(t5, t4, 0, 0, 1, 0LL); - -LAB12: goto LAB2; - -LAB8: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(29, ng0); - -LAB13: xsi_set_current_line(30, ng0); - t28 = ((char*)((ng2))); - t29 = (t0 + 2408); - xsi_vlogvar_wait_assign_value(t29, t28, 0, 0, 1, 0LL); - goto LAB12; - -} - -static void Always_38_2(char *t0) -{ - char t6[8]; - char t32[8]; - char t48[8]; - char t64[8]; - char t80[8]; - char t88[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t28; - char *t29; - char *t30; - char *t31; - char *t33; - char *t34; - unsigned int t35; - unsigned int t36; - unsigned int t37; - unsigned int t38; - unsigned int t39; - unsigned int t40; - unsigned int t41; - unsigned int t42; - unsigned int t43; - unsigned int t44; - unsigned int t45; - unsigned int t46; - char *t47; - char *t49; - unsigned int t50; - unsigned int t51; - unsigned int t52; - unsigned int t53; - unsigned int t54; - char *t55; - char *t56; - unsigned int t57; - unsigned int t58; - unsigned int t59; - char *t60; - char *t61; - char *t62; - char *t63; - char *t65; - char *t66; - unsigned int t67; - unsigned int t68; - unsigned int t69; - unsigned int t70; - unsigned int t71; - unsigned int t72; - unsigned int t73; - unsigned int t74; - unsigned int t75; - unsigned int t76; - unsigned int t77; - unsigned int t78; - char *t79; - char *t81; - unsigned int t82; - unsigned int t83; - unsigned int t84; - unsigned int t85; - unsigned int t86; - char *t87; - unsigned int t89; - unsigned int t90; - unsigned int t91; - char *t92; - char *t93; - char *t94; - unsigned int t95; - unsigned int t96; - unsigned int t97; - unsigned int t98; - unsigned int t99; - unsigned int t100; - unsigned int t101; - char *t102; - char *t103; - unsigned int t104; - unsigned int t105; - unsigned int t106; - unsigned int t107; - unsigned int t108; - unsigned int t109; - unsigned int t110; - unsigned int t111; - int t112; - int t113; - unsigned int t114; - unsigned int t115; - unsigned int t116; - unsigned int t117; - unsigned int t118; - unsigned int t119; - char *t120; - unsigned int t121; - unsigned int t122; - unsigned int t123; - unsigned int t124; - unsigned int t125; - char *t126; - char *t127; - -LAB0: t1 = (t0 + 3816U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(38, ng0); - t2 = (t0 + 4168); - *((int *)t2) = 1; - t3 = (t0 + 3848); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(38, ng0); - -LAB5: xsi_set_current_line(39, ng0); - t4 = (t0 + 1208U); - t5 = *((char **)t4); - t4 = ((char*)((ng1))); - memset(t6, 0, 8); - t7 = (t5 + 4); - t8 = (t4 + 4); - t9 = *((unsigned int *)t5); - t10 = *((unsigned int *)t4); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t7); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t7); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB9; - -LAB6: if (t18 != 0) - goto LAB8; - -LAB7: *((unsigned int *)t6) = 1; - -LAB9: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(42, ng0); - -LAB14: xsi_set_current_line(43, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng2))); - memset(t6, 0, 8); - t7 = (t4 + 4); - t8 = (t5 + 4); - t9 = *((unsigned int *)t4); - t10 = *((unsigned int *)t5); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t7); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t7); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB18; - -LAB15: if (t18 != 0) - goto LAB17; - -LAB16: *((unsigned int *)t6) = 1; - -LAB18: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB19; - -LAB20: xsi_set_current_line(49, ng0); - -LAB49: xsi_set_current_line(50, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng4))); - memset(t6, 0, 8); - xsi_vlog_unsigned_minus(t6, 22, t4, 22, t5, 22); - t7 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t7, t6, 0, 0, 22, 0LL); - xsi_set_current_line(51, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1768); - xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 1, 0LL); - -LAB21: -LAB12: goto LAB2; - -LAB8: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(39, ng0); - -LAB13: xsi_set_current_line(40, ng0); - t28 = ((char*)((ng2))); - t29 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t29, t28, 0, 0, 22, 0LL); - goto LAB12; - -LAB17: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB18; - -LAB19: xsi_set_current_line(43, ng0); - -LAB22: xsi_set_current_line(44, ng0); - t28 = (t0 + 2248); - t29 = (t28 + 56U); - t30 = *((char **)t29); - t31 = ((char*)((ng1))); - memset(t32, 0, 8); - t33 = (t30 + 4); - t34 = (t31 + 4); - t35 = *((unsigned int *)t30); - t36 = *((unsigned int *)t31); - t37 = (t35 ^ t36); - t38 = *((unsigned int *)t33); - t39 = *((unsigned int *)t34); - t40 = (t38 ^ t39); - t41 = (t37 | t40); - t42 = *((unsigned int *)t33); - t43 = *((unsigned int *)t34); - t44 = (t42 | t43); - t45 = (~(t44)); - t46 = (t41 & t45); - if (t46 != 0) - goto LAB26; - -LAB23: if (t44 != 0) - goto LAB25; - -LAB24: *((unsigned int *)t32) = 1; - -LAB26: memset(t48, 0, 8); - t49 = (t32 + 4); - t50 = *((unsigned int *)t49); - t51 = (~(t50)); - t52 = *((unsigned int *)t32); - t53 = (t52 & t51); - t54 = (t53 & 1U); - if (t54 != 0) - goto LAB27; - -LAB28: if (*((unsigned int *)t49) != 0) - goto LAB29; - -LAB30: t56 = (t48 + 4); - t57 = *((unsigned int *)t48); - t58 = *((unsigned int *)t56); - t59 = (t57 || t58); - if (t59 > 0) - goto LAB31; - -LAB32: memcpy(t88, t48, 8); - -LAB33: t120 = (t88 + 4); - t121 = *((unsigned int *)t120); - t122 = (~(t121)); - t123 = *((unsigned int *)t88); - t124 = (t123 & t122); - t125 = (t124 != 0); - if (t125 > 0) - goto LAB45; - -LAB46: -LAB47: xsi_set_current_line(47, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1768); - xsi_vlogvar_wait_assign_value(t3, t2, 0, 0, 1, 0LL); - goto LAB21; - -LAB25: t47 = (t32 + 4); - *((unsigned int *)t32) = 1; - *((unsigned int *)t47) = 1; - goto LAB26; - -LAB27: *((unsigned int *)t48) = 1; - goto LAB30; - -LAB29: t55 = (t48 + 4); - *((unsigned int *)t48) = 1; - *((unsigned int *)t55) = 1; - goto LAB30; - -LAB31: t60 = (t0 + 2408); - t61 = (t60 + 56U); - t62 = *((char **)t61); - t63 = ((char*)((ng2))); - memset(t64, 0, 8); - t65 = (t62 + 4); - t66 = (t63 + 4); - t67 = *((unsigned int *)t62); - t68 = *((unsigned int *)t63); - t69 = (t67 ^ t68); - t70 = *((unsigned int *)t65); - t71 = *((unsigned int *)t66); - t72 = (t70 ^ t71); - t73 = (t69 | t72); - t74 = *((unsigned int *)t65); - t75 = *((unsigned int *)t66); - t76 = (t74 | t75); - t77 = (~(t76)); - t78 = (t73 & t77); - if (t78 != 0) - goto LAB37; - -LAB34: if (t76 != 0) - goto LAB36; - -LAB35: *((unsigned int *)t64) = 1; - -LAB37: memset(t80, 0, 8); - t81 = (t64 + 4); - t82 = *((unsigned int *)t81); - t83 = (~(t82)); - t84 = *((unsigned int *)t64); - t85 = (t84 & t83); - t86 = (t85 & 1U); - if (t86 != 0) - goto LAB38; - -LAB39: if (*((unsigned int *)t81) != 0) - goto LAB40; - -LAB41: t89 = *((unsigned int *)t48); - t90 = *((unsigned int *)t80); - t91 = (t89 & t90); - *((unsigned int *)t88) = t91; - t92 = (t48 + 4); - t93 = (t80 + 4); - t94 = (t88 + 4); - t95 = *((unsigned int *)t92); - t96 = *((unsigned int *)t93); - t97 = (t95 | t96); - *((unsigned int *)t94) = t97; - t98 = *((unsigned int *)t94); - t99 = (t98 != 0); - if (t99 == 1) - goto LAB42; - -LAB43: -LAB44: goto LAB33; - -LAB36: t79 = (t64 + 4); - *((unsigned int *)t64) = 1; - *((unsigned int *)t79) = 1; - goto LAB37; - -LAB38: *((unsigned int *)t80) = 1; - goto LAB41; - -LAB40: t87 = (t80 + 4); - *((unsigned int *)t80) = 1; - *((unsigned int *)t87) = 1; - goto LAB41; - -LAB42: t100 = *((unsigned int *)t88); - t101 = *((unsigned int *)t94); - *((unsigned int *)t88) = (t100 | t101); - t102 = (t48 + 4); - t103 = (t80 + 4); - t104 = *((unsigned int *)t48); - t105 = (~(t104)); - t106 = *((unsigned int *)t102); - t107 = (~(t106)); - t108 = *((unsigned int *)t80); - t109 = (~(t108)); - t110 = *((unsigned int *)t103); - t111 = (~(t110)); - t112 = (t105 & t107); - t113 = (t109 & t111); - t114 = (~(t112)); - t115 = (~(t113)); - t116 = *((unsigned int *)t94); - *((unsigned int *)t94) = (t116 & t114); - t117 = *((unsigned int *)t94); - *((unsigned int *)t94) = (t117 & t115); - t118 = *((unsigned int *)t88); - *((unsigned int *)t88) = (t118 & t114); - t119 = *((unsigned int *)t88); - *((unsigned int *)t88) = (t119 & t115); - goto LAB44; - -LAB45: xsi_set_current_line(44, ng0); - -LAB48: xsi_set_current_line(45, ng0); - t126 = ((char*)((ng3))); - t127 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t127, t126, 0, 0, 22, 0LL); - goto LAB47; - -} - - -extern void work_m_06185630164696979556_3598138731_init() -{ - static char *pe[] = {(void *)Always_16_0,(void *)Always_28_1,(void *)Always_38_2}; - xsi_register_didat("work_m_06185630164696979556_3598138731", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.didat Binary files differdeleted file mode 100644 index 7883ad1..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.lin64.o Binary files differdeleted file mode 100644 index 9b5da10..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06185630164696979556_3598138731.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c deleted file mode 100644 index f615a15..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.c +++ /dev/null @@ -1,279 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/Countdown.v"; -static int ng1[] = {1, 0}; -static int ng2[] = {0, 0}; - - - -static void Always_32_0(char *t0) -{ - char t4[8]; - char *t1; - char *t2; - char *t3; - char *t5; - char *t6; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - char *t14; - char *t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - -LAB0: t1 = (t0 + 3000U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(32, ng0); - t2 = (t0 + 4064); - *((int *)t2) = 1; - t3 = (t0 + 3032); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(32, ng0); - -LAB5: xsi_set_current_line(33, ng0); - t5 = (t0 + 2088); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memset(t4, 0, 8); - t8 = (t7 + 4); - t9 = *((unsigned int *)t8); - t10 = (~(t9)); - t11 = *((unsigned int *)t7); - t12 = (t11 & t10); - t13 = (t12 & 1U); - if (t13 != 0) - goto LAB9; - -LAB7: if (*((unsigned int *)t8) == 0) - goto LAB6; - -LAB8: t14 = (t4 + 4); - *((unsigned int *)t4) = 1; - *((unsigned int *)t14) = 1; - -LAB9: t15 = (t4 + 4); - t16 = *((unsigned int *)t15); - t17 = (~(t16)); - t18 = *((unsigned int *)t4); - t19 = (t18 & t17); - t20 = (t19 != 0); - if (t20 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(35, ng0); - -LAB14: xsi_set_current_line(36, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t5 = *((char **)t3); - t6 = (t0 + 1928); - xsi_vlogvar_assign_value(t6, t5, 0, 0, 8); - -LAB12: goto LAB2; - -LAB6: *((unsigned int *)t4) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(33, ng0); - -LAB13: xsi_set_current_line(34, ng0); - t21 = (t0 + 1528U); - t22 = *((char **)t21); - t21 = (t0 + 1928); - xsi_vlogvar_assign_value(t21, t22, 0, 0, 8); - goto LAB12; - -} - -static void Always_40_1(char *t0) -{ - char t17[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - unsigned int t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - char *t13; - char *t14; - char *t15; - char *t16; - char *t18; - -LAB0: t1 = (t0 + 3248U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(40, ng0); - t2 = (t0 + 4080); - *((int *)t2) = 1; - t3 = (t0 + 3280); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(40, ng0); - -LAB5: xsi_set_current_line(41, ng0); - t4 = (t0 + 2088); - t5 = (t4 + 56U); - t6 = *((char **)t5); - t7 = (t6 + 4); - t8 = *((unsigned int *)t7); - t9 = (~(t8)); - t10 = *((unsigned int *)t6); - t11 = (t10 & t9); - t12 = (t11 != 0); - if (t12 > 0) - goto LAB6; - -LAB7: xsi_set_current_line(43, ng0); - -LAB10: xsi_set_current_line(44, ng0); - t2 = (t0 + 1528U); - t3 = *((char **)t2); - t2 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t2, t3, 0, 0, 8, 0LL); - -LAB8: goto LAB2; - -LAB6: xsi_set_current_line(41, ng0); - -LAB9: xsi_set_current_line(42, ng0); - t13 = (t0 + 1928); - t14 = (t13 + 56U); - t15 = *((char **)t14); - t16 = ((char*)((ng1))); - memset(t17, 0, 8); - xsi_vlog_unsigned_minus(t17, 32, t15, 8, t16, 32); - t18 = (t0 + 1928); - xsi_vlogvar_wait_assign_value(t18, t17, 0, 0, 8, 0LL); - goto LAB8; - -} - -static void Always_48_2(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - -LAB0: t1 = (t0 + 3496U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(48, ng0); - t2 = (t0 + 4096); - *((int *)t2) = 1; - t3 = (t0 + 3528); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(48, ng0); - -LAB5: xsi_set_current_line(49, ng0); - t4 = ((char*)((ng1))); - t5 = (t0 + 2088); - xsi_vlogvar_assign_value(t5, t4, 0, 0, 1); - goto LAB2; - -} - -static void Always_52_3(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - -LAB0: t1 = (t0 + 3744U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(52, ng0); - t2 = (t0 + 4112); - *((int *)t2) = 1; - t3 = (t0 + 3776); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(52, ng0); - -LAB5: xsi_set_current_line(53, ng0); - t4 = ((char*)((ng2))); - t5 = (t0 + 2088); - xsi_vlogvar_assign_value(t5, t4, 0, 0, 1); - xsi_set_current_line(54, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 8); - goto LAB2; - -} - - -extern void work_m_06453055231304268951_4281377536_init() -{ - static char *pe[] = {(void *)Always_32_0,(void *)Always_40_1,(void *)Always_48_2,(void *)Always_52_3}; - xsi_register_didat("work_m_06453055231304268951_4281377536", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat Binary files differdeleted file mode 100644 index 1597deb..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o Binary files differdeleted file mode 100644 index 889883c..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_06453055231304268951_4281377536.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.c deleted file mode 100644 index e76415d..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.c +++ /dev/null @@ -1,192 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/CountdownController.v"; -static int ng1[] = {100, 0}; -static int ng2[] = {50, 0}; -static int ng3[] = {0, 0}; - - - -static void Always_75_0(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - -LAB0: t1 = (t0 + 6040U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(75, ng0); - t2 = (t0 + 7352); - *((int *)t2) = 1; - t3 = (t0 + 6072); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(75, ng0); - -LAB5: xsi_set_current_line(76, ng0); - t4 = (t0 + 1848U); - t5 = *((char **)t4); - t4 = (t0 + 4968); - xsi_vlogvar_wait_assign_value(t4, t5, 0, 0, 7, 0LL); - xsi_set_current_line(77, ng0); - t2 = (t0 + 2008U); - t3 = *((char **)t2); - t2 = (t0 + 5128); - xsi_vlogvar_wait_assign_value(t2, t3, 0, 0, 4, 0LL); - goto LAB2; - -} - -static void implSig1_execute(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - -LAB0: t1 = (t0 + 6288U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: t2 = ((char*)((ng1))); - t3 = (t0 + 7432); - t4 = (t3 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memcpy(t7, t2, 8); - xsi_driver_vfirst_trans(t3, 0, 31); - -LAB1: return; -} - -static void implSig2_execute(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - -LAB0: t1 = (t0 + 6536U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: t2 = ((char*)((ng1))); - t3 = (t0 + 7496); - t4 = (t3 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memcpy(t7, t2, 8); - xsi_driver_vfirst_trans(t3, 0, 31); - -LAB1: return; -} - -static void implSig3_execute(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - -LAB0: t1 = (t0 + 6784U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: t2 = ((char*)((ng2))); - t3 = (t0 + 7560); - t4 = (t3 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memcpy(t7, t2, 8); - xsi_driver_vfirst_trans(t3, 0, 31); - -LAB1: return; -} - -static void implSig4_execute(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - -LAB0: t1 = (t0 + 7032U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: t2 = ((char*)((ng3))); - t3 = (t0 + 7624); - t4 = (t3 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memcpy(t7, t2, 8); - xsi_driver_vfirst_trans(t3, 0, 31); - -LAB1: return; -} - - -extern void work_m_08578567565259243700_1151371814_init() -{ - static char *pe[] = {(void *)Always_75_0,(void *)implSig1_execute,(void *)implSig2_execute,(void *)implSig3_execute,(void *)implSig4_execute}; - xsi_register_didat("work_m_08578567565259243700_1151371814", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.didat Binary files differdeleted file mode 100644 index c085f25..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.lin64.o Binary files differdeleted file mode 100644 index 6a4750e..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_08578567565259243700_1151371814.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.c deleted file mode 100644 index 65cbf9d..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.c +++ /dev/null @@ -1,273 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/ClockDivider.v"; -static int ng1[] = {1, 0}; -static int ng2[] = {0, 0}; - - - -static void Always_31_0(char *t0) -{ - char t6[8]; - char t30[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - char *t21; - char *t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t28; - char *t29; - char *t31; - char *t32; - unsigned int t33; - unsigned int t34; - unsigned int t35; - unsigned int t36; - unsigned int t37; - char *t38; - char *t39; - char *t40; - unsigned int t41; - unsigned int t42; - unsigned int t43; - unsigned int t44; - unsigned int t45; - unsigned int t46; - unsigned int t47; - unsigned int t48; - char *t49; - -LAB0: t1 = (t0 + 2840U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(31, ng0); - t2 = (t0 + 3160); - *((int *)t2) = 1; - t3 = (t0 + 2872); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(31, ng0); - -LAB5: xsi_set_current_line(32, ng0); - t4 = (t0 + 1208U); - t5 = *((char **)t4); - t4 = ((char*)((ng1))); - memset(t6, 0, 8); - t7 = (t5 + 4); - t8 = (t4 + 4); - t9 = *((unsigned int *)t5); - t10 = *((unsigned int *)t4); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t7); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t7); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB9; - -LAB6: if (t18 != 0) - goto LAB8; - -LAB7: *((unsigned int *)t6) = 1; - -LAB9: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB10; - -LAB11: xsi_set_current_line(35, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 1368U); - t7 = *((char **)t5); - memset(t6, 0, 8); - t5 = (t4 + 4); - t8 = (t7 + 4); - t9 = *((unsigned int *)t4); - t10 = *((unsigned int *)t7); - t11 = (t9 ^ t10); - t12 = *((unsigned int *)t5); - t13 = *((unsigned int *)t8); - t14 = (t12 ^ t13); - t15 = (t11 | t14); - t16 = *((unsigned int *)t5); - t17 = *((unsigned int *)t8); - t18 = (t16 | t17); - t19 = (~(t18)); - t20 = (t15 & t19); - if (t20 != 0) - goto LAB17; - -LAB14: if (t18 != 0) - goto LAB16; - -LAB15: *((unsigned int *)t6) = 1; - -LAB17: t22 = (t6 + 4); - t23 = *((unsigned int *)t22); - t24 = (~(t23)); - t25 = *((unsigned int *)t6); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB18; - -LAB19: xsi_set_current_line(38, ng0); - -LAB28: xsi_set_current_line(39, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng1))); - memset(t6, 0, 8); - xsi_vlog_unsigned_add(t6, 32, t4, 24, t5, 32); - t7 = (t0 + 1928); - xsi_vlogvar_assign_value(t7, t6, 0, 0, 24); - -LAB20: -LAB12: goto LAB2; - -LAB8: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB9; - -LAB10: xsi_set_current_line(32, ng0); - -LAB13: xsi_set_current_line(33, ng0); - t28 = ((char*)((ng2))); - t29 = (t0 + 1928); - xsi_vlogvar_assign_value(t29, t28, 0, 0, 24); - xsi_set_current_line(34, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1768); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - goto LAB12; - -LAB16: t21 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t21) = 1; - goto LAB17; - -LAB18: xsi_set_current_line(35, ng0); - -LAB21: xsi_set_current_line(36, ng0); - t28 = (t0 + 1768); - t29 = (t28 + 56U); - t31 = *((char **)t29); - memset(t30, 0, 8); - t32 = (t31 + 4); - t33 = *((unsigned int *)t32); - t34 = (~(t33)); - t35 = *((unsigned int *)t31); - t36 = (t35 & t34); - t37 = (t36 & 1U); - if (t37 != 0) - goto LAB25; - -LAB23: if (*((unsigned int *)t32) == 0) - goto LAB22; - -LAB24: t38 = (t30 + 4); - *((unsigned int *)t30) = 1; - *((unsigned int *)t38) = 1; - -LAB25: t39 = (t30 + 4); - t40 = (t31 + 4); - t41 = *((unsigned int *)t31); - t42 = (~(t41)); - *((unsigned int *)t30) = t42; - *((unsigned int *)t39) = 0; - if (*((unsigned int *)t40) != 0) - goto LAB27; - -LAB26: t47 = *((unsigned int *)t30); - *((unsigned int *)t30) = (t47 & 1U); - t48 = *((unsigned int *)t39); - *((unsigned int *)t39) = (t48 & 1U); - t49 = (t0 + 1768); - xsi_vlogvar_assign_value(t49, t30, 0, 0, 1); - xsi_set_current_line(37, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 24); - goto LAB20; - -LAB22: *((unsigned int *)t30) = 1; - goto LAB25; - -LAB27: t43 = *((unsigned int *)t30); - t44 = *((unsigned int *)t40); - *((unsigned int *)t30) = (t43 | t44); - t45 = *((unsigned int *)t39); - t46 = *((unsigned int *)t40); - *((unsigned int *)t39) = (t45 | t46); - goto LAB26; - -} - - -extern void work_m_09461933616065074075_2531671071_init() -{ - static char *pe[] = {(void *)Always_31_0}; - xsi_register_didat("work_m_09461933616065074075_2531671071", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.didat Binary files differdeleted file mode 100644 index 93ffdf8..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.lin64.o Binary files differdeleted file mode 100644 index 34c2d23..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09461933616065074075_2531671071.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.c deleted file mode 100644 index 938dcc2..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.c +++ /dev/null @@ -1,722 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/Test_ContdownController.v"; -static int ng1[] = {0, 0}; -static int ng2[] = {11, 0}; -static int ng3[] = {100, 0}; -static int ng4[] = {1, 0}; -static int ng5[] = {50, 0}; -static int ng6[] = {5, 0}; -static int ng7[] = {2, 0}; -static int ng8[] = {90, 0}; - - - -static void Initial_51_0(char *t0) -{ - char t9[8]; - char t33[8]; - char *t1; - char *t2; - char *t3; - unsigned int t4; - unsigned int t5; - unsigned int t6; - unsigned int t7; - unsigned int t8; - char *t10; - char *t11; - char *t12; - char *t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - char *t19; - char *t20; - char *t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - unsigned int t28; - unsigned int t29; - char *t30; - char *t31; - char *t32; - char *t34; - -LAB0: t1 = (t0 + 3480U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(51, ng0); - -LAB4: xsi_set_current_line(53, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1608); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(54, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1768); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(55, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(56, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 2088); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(57, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 2248); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(60, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 100000LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(67, ng0); - -LAB6: t2 = ((char*)((ng2))); - t3 = (t2 + 4); - t4 = *((unsigned int *)t3); - t5 = (~(t4)); - t6 = *((unsigned int *)t2); - t7 = (t6 & t5); - t8 = (t7 != 0); - if (t8 > 0) - goto LAB7; - -LAB8: goto LAB1; - -LAB7: xsi_set_current_line(67, ng0); - -LAB9: xsi_set_current_line(68, ng0); - t10 = (t0 + 2088); - t11 = (t10 + 56U); - t12 = *((char **)t11); - memset(t9, 0, 8); - t13 = (t12 + 4); - t14 = *((unsigned int *)t13); - t15 = (~(t14)); - t16 = *((unsigned int *)t12); - t17 = (t16 & t15); - t18 = (t17 & 1U); - if (t18 != 0) - goto LAB13; - -LAB11: if (*((unsigned int *)t13) == 0) - goto LAB10; - -LAB12: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - -LAB13: t20 = (t9 + 4); - t21 = (t12 + 4); - t22 = *((unsigned int *)t12); - t23 = (~(t22)); - *((unsigned int *)t9) = t23; - *((unsigned int *)t20) = 0; - if (*((unsigned int *)t21) != 0) - goto LAB15; - -LAB14: t28 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t28 & 1U); - t29 = *((unsigned int *)t20); - *((unsigned int *)t20) = (t29 & 1U); - t30 = (t0 + 2088); - xsi_vlogvar_assign_value(t30, t9, 0, 0, 1); - xsi_set_current_line(68, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB16; - goto LAB1; - -LAB10: *((unsigned int *)t9) = 1; - goto LAB13; - -LAB15: t24 = *((unsigned int *)t9); - t25 = *((unsigned int *)t21); - *((unsigned int *)t9) = (t24 | t25); - t26 = *((unsigned int *)t20); - t27 = *((unsigned int *)t21); - *((unsigned int *)t20) = (t26 | t27); - goto LAB14; - -LAB16: xsi_set_current_line(69, ng0); - t2 = (t0 + 2408); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng3))); - memset(t9, 0, 8); - t12 = (t10 + 4); - if (*((unsigned int *)t12) != 0) - goto LAB18; - -LAB17: t13 = (t11 + 4); - if (*((unsigned int *)t13) != 0) - goto LAB18; - -LAB21: if (*((unsigned int *)t10) < *((unsigned int *)t11)) - goto LAB19; - -LAB20: t20 = (t9 + 4); - t4 = *((unsigned int *)t20); - t5 = (~(t4)); - t6 = *((unsigned int *)t9); - t7 = (t6 & t5); - t8 = (t7 != 0); - if (t8 > 0) - goto LAB22; - -LAB23: -LAB24: goto LAB6; - -LAB18: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - goto LAB20; - -LAB19: *((unsigned int *)t9) = 1; - goto LAB20; - -LAB22: xsi_set_current_line(69, ng0); - -LAB25: xsi_set_current_line(70, ng0); - t21 = (t0 + 2408); - t30 = (t21 + 56U); - t31 = *((char **)t30); - t32 = ((char*)((ng4))); - memset(t33, 0, 8); - xsi_vlog_unsigned_add(t33, 32, t31, 32, t32, 32); - t34 = (t0 + 2408); - xsi_vlogvar_assign_value(t34, t33, 0, 0, 32); - xsi_set_current_line(71, ng0); - t2 = (t0 + 2408); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng5))); - memset(t9, 0, 8); - t12 = (t10 + 4); - t13 = (t11 + 4); - t4 = *((unsigned int *)t10); - t5 = *((unsigned int *)t11); - t6 = (t4 ^ t5); - t7 = *((unsigned int *)t12); - t8 = *((unsigned int *)t13); - t14 = (t7 ^ t8); - t15 = (t6 | t14); - t16 = *((unsigned int *)t12); - t17 = *((unsigned int *)t13); - t18 = (t16 | t17); - t22 = (~(t18)); - t23 = (t15 & t22); - if (t23 != 0) - goto LAB29; - -LAB26: if (t18 != 0) - goto LAB28; - -LAB27: *((unsigned int *)t9) = 1; - -LAB29: t20 = (t9 + 4); - t24 = *((unsigned int *)t20); - t25 = (~(t24)); - t26 = *((unsigned int *)t9); - t27 = (t26 & t25); - t28 = (t27 != 0); - if (t28 > 0) - goto LAB30; - -LAB31: -LAB32: xsi_set_current_line(85, ng0); - t2 = (t0 + 2408); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng8))); - memset(t9, 0, 8); - t12 = (t10 + 4); - t13 = (t11 + 4); - t4 = *((unsigned int *)t10); - t5 = *((unsigned int *)t11); - t6 = (t4 ^ t5); - t7 = *((unsigned int *)t12); - t8 = *((unsigned int *)t13); - t14 = (t7 ^ t8); - t15 = (t6 | t14); - t16 = *((unsigned int *)t12); - t17 = *((unsigned int *)t13); - t18 = (t16 | t17); - t22 = (~(t18)); - t23 = (t15 & t22); - if (t23 != 0) - goto LAB83; - -LAB80: if (t18 != 0) - goto LAB82; - -LAB81: *((unsigned int *)t9) = 1; - -LAB83: t20 = (t9 + 4); - t24 = *((unsigned int *)t20); - t25 = (~(t24)); - t26 = *((unsigned int *)t9); - t27 = (t26 & t25); - t28 = (t27 != 0); - if (t28 > 0) - goto LAB84; - -LAB85: -LAB86: goto LAB24; - -LAB28: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - goto LAB29; - -LAB30: xsi_set_current_line(71, ng0); - -LAB33: xsi_set_current_line(72, ng0); - xsi_set_current_line(72, ng0); - t21 = ((char*)((ng1))); - t30 = (t0 + 2568); - xsi_vlogvar_assign_value(t30, t21, 0, 0, 4); - -LAB34: t2 = (t0 + 2568); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng6))); - memset(t9, 0, 8); - t12 = (t10 + 4); - if (*((unsigned int *)t12) != 0) - goto LAB36; - -LAB35: t13 = (t11 + 4); - if (*((unsigned int *)t13) != 0) - goto LAB36; - -LAB39: if (*((unsigned int *)t10) < *((unsigned int *)t11)) - goto LAB37; - -LAB38: t20 = (t9 + 4); - t4 = *((unsigned int *)t20); - t5 = (~(t4)); - t6 = *((unsigned int *)t9); - t7 = (t6 & t5); - t8 = (t7 != 0); - if (t8 > 0) - goto LAB40; - -LAB41: xsi_set_current_line(78, ng0); - xsi_set_current_line(78, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 2568); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 4); - -LAB57: t2 = (t0 + 2568); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng7))); - memset(t9, 0, 8); - t12 = (t10 + 4); - if (*((unsigned int *)t12) != 0) - goto LAB59; - -LAB58: t13 = (t11 + 4); - if (*((unsigned int *)t13) != 0) - goto LAB59; - -LAB62: if (*((unsigned int *)t10) < *((unsigned int *)t11)) - goto LAB60; - -LAB61: t20 = (t9 + 4); - t4 = *((unsigned int *)t20); - t5 = (~(t4)); - t6 = *((unsigned int *)t9); - t7 = (t6 & t5); - t8 = (t7 != 0); - if (t8 > 0) - goto LAB63; - -LAB64: goto LAB32; - -LAB36: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - goto LAB38; - -LAB37: *((unsigned int *)t9) = 1; - goto LAB38; - -LAB40: xsi_set_current_line(72, ng0); - -LAB42: xsi_set_current_line(73, ng0); - t21 = ((char*)((ng4))); - t30 = (t0 + 1608); - xsi_vlogvar_assign_value(t30, t21, 0, 0, 1); - xsi_set_current_line(73, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB43; - goto LAB1; - -LAB43: xsi_set_current_line(74, ng0); - t3 = (t0 + 2088); - t10 = (t3 + 56U); - t11 = *((char **)t10); - memset(t9, 0, 8); - t12 = (t11 + 4); - t4 = *((unsigned int *)t12); - t5 = (~(t4)); - t6 = *((unsigned int *)t11); - t7 = (t6 & t5); - t8 = (t7 & 1U); - if (t8 != 0) - goto LAB47; - -LAB45: if (*((unsigned int *)t12) == 0) - goto LAB44; - -LAB46: t13 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t13) = 1; - -LAB47: t19 = (t9 + 4); - t20 = (t11 + 4); - t14 = *((unsigned int *)t11); - t15 = (~(t14)); - *((unsigned int *)t9) = t15; - *((unsigned int *)t19) = 0; - if (*((unsigned int *)t20) != 0) - goto LAB49; - -LAB48: t23 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t23 & 1U); - t24 = *((unsigned int *)t19); - *((unsigned int *)t19) = (t24 & 1U); - t21 = (t0 + 2088); - xsi_vlogvar_assign_value(t21, t9, 0, 0, 1); - xsi_set_current_line(75, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1608); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(75, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB50; - goto LAB1; - -LAB44: *((unsigned int *)t9) = 1; - goto LAB47; - -LAB49: t16 = *((unsigned int *)t9); - t17 = *((unsigned int *)t20); - *((unsigned int *)t9) = (t16 | t17); - t18 = *((unsigned int *)t19); - t22 = *((unsigned int *)t20); - *((unsigned int *)t19) = (t18 | t22); - goto LAB48; - -LAB50: xsi_set_current_line(76, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t10 = *((char **)t3); - memset(t9, 0, 8); - t11 = (t10 + 4); - t4 = *((unsigned int *)t11); - t5 = (~(t4)); - t6 = *((unsigned int *)t10); - t7 = (t6 & t5); - t8 = (t7 & 1U); - if (t8 != 0) - goto LAB54; - -LAB52: if (*((unsigned int *)t11) == 0) - goto LAB51; - -LAB53: t12 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t12) = 1; - -LAB54: t13 = (t9 + 4); - t19 = (t10 + 4); - t14 = *((unsigned int *)t10); - t15 = (~(t14)); - *((unsigned int *)t9) = t15; - *((unsigned int *)t13) = 0; - if (*((unsigned int *)t19) != 0) - goto LAB56; - -LAB55: t23 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t23 & 1U); - t24 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t24 & 1U); - t20 = (t0 + 2088); - xsi_vlogvar_assign_value(t20, t9, 0, 0, 1); - xsi_set_current_line(72, ng0); - t2 = (t0 + 2568); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng4))); - memset(t9, 0, 8); - xsi_vlog_unsigned_add(t9, 32, t10, 4, t11, 32); - t12 = (t0 + 2568); - xsi_vlogvar_assign_value(t12, t9, 0, 0, 4); - goto LAB34; - -LAB51: *((unsigned int *)t9) = 1; - goto LAB54; - -LAB56: t16 = *((unsigned int *)t9); - t17 = *((unsigned int *)t19); - *((unsigned int *)t9) = (t16 | t17); - t18 = *((unsigned int *)t13); - t22 = *((unsigned int *)t19); - *((unsigned int *)t13) = (t18 | t22); - goto LAB55; - -LAB59: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - goto LAB61; - -LAB60: *((unsigned int *)t9) = 1; - goto LAB61; - -LAB63: xsi_set_current_line(78, ng0); - -LAB65: xsi_set_current_line(79, ng0); - t21 = ((char*)((ng4))); - t30 = (t0 + 1768); - xsi_vlogvar_assign_value(t30, t21, 0, 0, 1); - xsi_set_current_line(79, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB66; - goto LAB1; - -LAB66: xsi_set_current_line(80, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t10 = *((char **)t3); - memset(t9, 0, 8); - t11 = (t10 + 4); - t4 = *((unsigned int *)t11); - t5 = (~(t4)); - t6 = *((unsigned int *)t10); - t7 = (t6 & t5); - t8 = (t7 & 1U); - if (t8 != 0) - goto LAB70; - -LAB68: if (*((unsigned int *)t11) == 0) - goto LAB67; - -LAB69: t12 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t12) = 1; - -LAB70: t13 = (t9 + 4); - t19 = (t10 + 4); - t14 = *((unsigned int *)t10); - t15 = (~(t14)); - *((unsigned int *)t9) = t15; - *((unsigned int *)t13) = 0; - if (*((unsigned int *)t19) != 0) - goto LAB72; - -LAB71: t23 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t23 & 1U); - t24 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t24 & 1U); - t20 = (t0 + 2088); - xsi_vlogvar_assign_value(t20, t9, 0, 0, 1); - xsi_set_current_line(81, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1768); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(81, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB73; - goto LAB1; - -LAB67: *((unsigned int *)t9) = 1; - goto LAB70; - -LAB72: t16 = *((unsigned int *)t9); - t17 = *((unsigned int *)t19); - *((unsigned int *)t9) = (t16 | t17); - t18 = *((unsigned int *)t13); - t22 = *((unsigned int *)t19); - *((unsigned int *)t13) = (t18 | t22); - goto LAB71; - -LAB73: xsi_set_current_line(82, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t10 = *((char **)t3); - memset(t9, 0, 8); - t11 = (t10 + 4); - t4 = *((unsigned int *)t11); - t5 = (~(t4)); - t6 = *((unsigned int *)t10); - t7 = (t6 & t5); - t8 = (t7 & 1U); - if (t8 != 0) - goto LAB77; - -LAB75: if (*((unsigned int *)t11) == 0) - goto LAB74; - -LAB76: t12 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t12) = 1; - -LAB77: t13 = (t9 + 4); - t19 = (t10 + 4); - t14 = *((unsigned int *)t10); - t15 = (~(t14)); - *((unsigned int *)t9) = t15; - *((unsigned int *)t13) = 0; - if (*((unsigned int *)t19) != 0) - goto LAB79; - -LAB78: t23 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t23 & 1U); - t24 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t24 & 1U); - t20 = (t0 + 2088); - xsi_vlogvar_assign_value(t20, t9, 0, 0, 1); - xsi_set_current_line(78, ng0); - t2 = (t0 + 2568); - t3 = (t2 + 56U); - t10 = *((char **)t3); - t11 = ((char*)((ng4))); - memset(t9, 0, 8); - xsi_vlog_unsigned_add(t9, 32, t10, 4, t11, 32); - t12 = (t0 + 2568); - xsi_vlogvar_assign_value(t12, t9, 0, 0, 4); - goto LAB57; - -LAB74: *((unsigned int *)t9) = 1; - goto LAB77; - -LAB79: t16 = *((unsigned int *)t9); - t17 = *((unsigned int *)t19); - *((unsigned int *)t9) = (t16 | t17); - t18 = *((unsigned int *)t13); - t22 = *((unsigned int *)t19); - *((unsigned int *)t13) = (t18 | t22); - goto LAB78; - -LAB82: t19 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t19) = 1; - goto LAB83; - -LAB84: xsi_set_current_line(85, ng0); - -LAB87: xsi_set_current_line(86, ng0); - t21 = ((char*)((ng4))); - t30 = (t0 + 1928); - xsi_vlogvar_assign_value(t30, t21, 0, 0, 1); - xsi_set_current_line(86, ng0); - t2 = (t0 + 3288); - xsi_process_wait(t2, 1000LL); - *((char **)t1) = &&LAB88; - goto LAB1; - -LAB88: xsi_set_current_line(86, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t10 = *((char **)t3); - memset(t9, 0, 8); - t11 = (t10 + 4); - t4 = *((unsigned int *)t11); - t5 = (~(t4)); - t6 = *((unsigned int *)t10); - t7 = (t6 & t5); - t8 = (t7 & 1U); - if (t8 != 0) - goto LAB92; - -LAB90: if (*((unsigned int *)t11) == 0) - goto LAB89; - -LAB91: t12 = (t9 + 4); - *((unsigned int *)t9) = 1; - *((unsigned int *)t12) = 1; - -LAB92: t13 = (t9 + 4); - t19 = (t10 + 4); - t14 = *((unsigned int *)t10); - t15 = (~(t14)); - *((unsigned int *)t9) = t15; - *((unsigned int *)t13) = 0; - if (*((unsigned int *)t19) != 0) - goto LAB94; - -LAB93: t23 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t23 & 1U); - t24 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t24 & 1U); - t20 = (t0 + 2088); - xsi_vlogvar_assign_value(t20, t9, 0, 0, 1); - xsi_set_current_line(86, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - goto LAB86; - -LAB89: *((unsigned int *)t9) = 1; - goto LAB92; - -LAB94: t16 = *((unsigned int *)t9); - t17 = *((unsigned int *)t19); - *((unsigned int *)t9) = (t16 | t17); - t18 = *((unsigned int *)t13); - t22 = *((unsigned int *)t19); - *((unsigned int *)t13) = (t18 | t22); - goto LAB93; - -} - - -extern void work_m_09637473393135046702_3413554552_init() -{ - static char *pe[] = {(void *)Initial_51_0}; - xsi_register_didat("work_m_09637473393135046702_3413554552", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.didat Binary files differdeleted file mode 100644 index 9824e28..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.lin64.o Binary files differdeleted file mode 100644 index be3d391..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_09637473393135046702_3413554552.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.c deleted file mode 100644 index 67e2282..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.c +++ /dev/null @@ -1,590 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/Bin2BCD.v"; -static int ng1[] = {0, 0}; -static int ng2[] = {7, 0}; -static int ng3[] = {1, 0}; -static int ng4[] = {5, 0}; -static int ng5[] = {3, 0}; -static int ng6[] = {19, 0}; -static int ng7[] = {16, 0}; -static int ng8[] = {15, 0}; -static int ng9[] = {12, 0}; -static int ng10[] = {11, 0}; -static int ng11[] = {8, 0}; - - - -static void Always_32_0(char *t0) -{ - char t6[8]; - char t20[8]; - char t28[8]; - char t38[8]; - char t40[8]; - char t41[8]; - char t42[8]; - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t7; - char *t8; - char *t9; - char *t10; - char *t11; - char *t12; - char *t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - char *t19; - char *t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t29; - char *t30; - unsigned int t31; - unsigned int t32; - unsigned int t33; - unsigned int t34; - unsigned int t35; - unsigned int t36; - char *t37; - char *t39; - char *t43; - char *t44; - char *t45; - char *t46; - char *t47; - char *t48; - unsigned int t49; - int t50; - char *t51; - unsigned int t52; - int t53; - int t54; - char *t55; - unsigned int t56; - int t57; - int t58; - unsigned int t59; - int t60; - unsigned int t61; - unsigned int t62; - int t63; - int t64; - -LAB0: t1 = (t0 + 3000U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(32, ng0); - t2 = (t0 + 3320); - *((int *)t2) = 1; - t3 = (t0 + 3032); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(32, ng0); - -LAB5: xsi_set_current_line(33, ng0); - t4 = ((char*)((ng1))); - t5 = (t0 + 1768); - xsi_vlogvar_assign_value(t5, t4, 0, 0, 4); - xsi_set_current_line(33, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1608); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 4); - xsi_set_current_line(33, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1448); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 4); - xsi_set_current_line(34, ng0); - t2 = (t0 + 1048U); - t3 = *((char **)t2); - t2 = (t0 + 1448); - t4 = (t2 + 56U); - t5 = *((char **)t4); - t7 = (t0 + 1608); - t8 = (t7 + 56U); - t9 = *((char **)t8); - t10 = (t0 + 1768); - t11 = (t10 + 56U); - t12 = *((char **)t11); - xsi_vlogtype_concat(t6, 20, 20, 4U, t12, 4, t9, 4, t5, 4, t3, 8); - t13 = (t0 + 1928); - xsi_vlogvar_assign_value(t13, t6, 0, 0, 20); - xsi_set_current_line(36, ng0); - xsi_set_current_line(36, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 2088); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 4); - -LAB6: t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng2))); - memset(t6, 0, 8); - t7 = (t4 + 4); - if (*((unsigned int *)t7) != 0) - goto LAB8; - -LAB7: t8 = (t5 + 4); - if (*((unsigned int *)t8) != 0) - goto LAB8; - -LAB11: if (*((unsigned int *)t4) < *((unsigned int *)t5)) - goto LAB9; - -LAB10: t10 = (t6 + 4); - t14 = *((unsigned int *)t10); - t15 = (~(t14)); - t16 = *((unsigned int *)t6); - t17 = (t16 & t15); - t18 = (t17 != 0); - if (t18 > 0) - goto LAB12; - -LAB13: xsi_set_current_line(49, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng3))); - memset(t6, 0, 8); - xsi_vlog_unsigned_lshift(t6, 20, t4, 20, t5, 32); - t7 = (t0 + 1928); - xsi_vlogvar_assign_value(t7, t6, 0, 0, 20); - xsi_set_current_line(51, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 16); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 16); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = (t0 + 1768); - xsi_vlogvar_assign_value(t8, t6, 0, 0, 4); - xsi_set_current_line(52, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 12); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 12); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = (t0 + 1608); - xsi_vlogvar_assign_value(t8, t6, 0, 0, 4); - xsi_set_current_line(53, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 8); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 8); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = (t0 + 1448); - xsi_vlogvar_assign_value(t8, t6, 0, 0, 4); - goto LAB2; - -LAB8: t9 = (t6 + 4); - *((unsigned int *)t6) = 1; - *((unsigned int *)t9) = 1; - goto LAB10; - -LAB9: *((unsigned int *)t6) = 1; - goto LAB10; - -LAB12: xsi_set_current_line(36, ng0); - -LAB14: xsi_set_current_line(37, ng0); - t11 = (t0 + 1928); - t12 = (t11 + 56U); - t13 = *((char **)t12); - t19 = ((char*)((ng3))); - memset(t20, 0, 8); - xsi_vlog_unsigned_lshift(t20, 20, t13, 20, t19, 32); - t21 = (t0 + 1928); - xsi_vlogvar_assign_value(t21, t20, 0, 0, 20); - xsi_set_current_line(38, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 16); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 16); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t6 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB16; - -LAB15: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB16; - -LAB19: if (*((unsigned int *)t6) < *((unsigned int *)t8)) - goto LAB18; - -LAB17: *((unsigned int *)t20) = 1; - -LAB18: t12 = (t20 + 4); - t23 = *((unsigned int *)t12); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB20; - -LAB21: -LAB22: xsi_set_current_line(41, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 12); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 12); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t6 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB27; - -LAB26: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB27; - -LAB30: if (*((unsigned int *)t6) < *((unsigned int *)t8)) - goto LAB29; - -LAB28: *((unsigned int *)t20) = 1; - -LAB29: t12 = (t20 + 4); - t23 = *((unsigned int *)t12); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB31; - -LAB32: -LAB33: xsi_set_current_line(44, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t4 = *((char **)t3); - memset(t6, 0, 8); - t5 = (t6 + 4); - t7 = (t4 + 4); - t14 = *((unsigned int *)t4); - t15 = (t14 >> 8); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t7); - t17 = (t16 >> 8); - *((unsigned int *)t5) = t17; - t18 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t18 & 15U); - t22 = *((unsigned int *)t5); - *((unsigned int *)t5) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t6 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB38; - -LAB37: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB38; - -LAB41: if (*((unsigned int *)t6) < *((unsigned int *)t8)) - goto LAB40; - -LAB39: *((unsigned int *)t20) = 1; - -LAB40: t12 = (t20 + 4); - t23 = *((unsigned int *)t12); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB42; - -LAB43: -LAB44: xsi_set_current_line(36, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = ((char*)((ng3))); - memset(t6, 0, 8); - xsi_vlog_unsigned_add(t6, 32, t4, 4, t5, 32); - t7 = (t0 + 2088); - xsi_vlogvar_assign_value(t7, t6, 0, 0, 4); - goto LAB6; - -LAB16: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB18; - -LAB20: xsi_set_current_line(38, ng0); - -LAB23: xsi_set_current_line(39, ng0); - t13 = (t0 + 1928); - t19 = (t13 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 16); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 16); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_add(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 1928); - t43 = (t0 + 1928); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng6))); - t47 = ((char*)((ng7))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB24; - -LAB25: goto LAB22; - -LAB24: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB25; - -LAB27: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB29; - -LAB31: xsi_set_current_line(41, ng0); - -LAB34: xsi_set_current_line(42, ng0); - t13 = (t0 + 1928); - t19 = (t13 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 12); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 12); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_add(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 1928); - t43 = (t0 + 1928); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng8))); - t47 = ((char*)((ng9))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB35; - -LAB36: goto LAB33; - -LAB35: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB36; - -LAB38: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB40; - -LAB42: xsi_set_current_line(44, ng0); - -LAB45: xsi_set_current_line(45, ng0); - t13 = (t0 + 1928); - t19 = (t13 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 8); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 8); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_add(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 1928); - t43 = (t0 + 1928); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng10))); - t47 = ((char*)((ng11))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB46; - -LAB47: goto LAB44; - -LAB46: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB47; - -} - - -extern void work_m_14079594305330756291_2618506667_init() -{ - static char *pe[] = {(void *)Always_32_0}; - xsi_register_didat("work_m_14079594305330756291_2618506667", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.didat Binary files differdeleted file mode 100644 index ab5f612..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.lin64.o Binary files differdeleted file mode 100644 index d8618b6..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14079594305330756291_2618506667.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.c deleted file mode 100644 index c8ac153..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.c +++ /dev/null @@ -1,249 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/DisplayController.v"; -static unsigned int ng1[] = {3U, 0U}; - - - -static void Always_41_0(char *t0) -{ - char t4[8]; - char t26[8]; - char *t1; - char *t2; - char *t3; - char *t5; - char *t6; - char *t7; - char *t8; - unsigned int t9; - unsigned int t10; - unsigned int t11; - unsigned int t12; - unsigned int t13; - char *t14; - char *t15; - char *t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - unsigned int t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - char *t25; - char *t27; - char *t28; - -LAB0: t1 = (t0 + 3480U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(41, ng0); - t2 = (t0 + 3800); - *((int *)t2) = 1; - t3 = (t0 + 3512); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(41, ng0); - -LAB5: xsi_set_current_line(42, ng0); - t5 = (t0 + 2568); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memset(t4, 0, 8); - t8 = (t7 + 4); - t9 = *((unsigned int *)t8); - t10 = (~(t9)); - t11 = *((unsigned int *)t7); - t12 = (t11 & t10); - t13 = (t12 & 1U); - if (t13 != 0) - goto LAB9; - -LAB7: if (*((unsigned int *)t8) == 0) - goto LAB6; - -LAB8: t14 = (t4 + 4); - *((unsigned int *)t4) = 1; - *((unsigned int *)t14) = 1; - -LAB9: t15 = (t4 + 4); - t16 = (t7 + 4); - t17 = *((unsigned int *)t7); - t18 = (~(t17)); - *((unsigned int *)t4) = t18; - *((unsigned int *)t15) = 0; - if (*((unsigned int *)t16) != 0) - goto LAB11; - -LAB10: t23 = *((unsigned int *)t4); - *((unsigned int *)t4) = (t23 & 1U); - t24 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t24 & 1U); - t25 = (t0 + 2568); - xsi_vlogvar_wait_assign_value(t25, t4, 0, 0, 1, 0LL); - xsi_set_current_line(43, ng0); - t2 = (t0 + 2568); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t26, 0, 8); - t6 = (t5 + 4); - t9 = *((unsigned int *)t6); - t10 = (~(t9)); - t11 = *((unsigned int *)t5); - t12 = (t11 & t10); - t13 = (t12 & 1U); - if (t13 != 0) - goto LAB12; - -LAB13: if (*((unsigned int *)t6) != 0) - goto LAB14; - -LAB15: t8 = (t26 + 4); - t17 = *((unsigned int *)t26); - t18 = *((unsigned int *)t8); - t19 = (t17 || t18); - if (t19 > 0) - goto LAB16; - -LAB17: t20 = *((unsigned int *)t26); - t21 = (~(t20)); - t22 = *((unsigned int *)t8); - t23 = (t21 || t22); - if (t23 > 0) - goto LAB18; - -LAB19: if (*((unsigned int *)t8) > 0) - goto LAB20; - -LAB21: if (*((unsigned int *)t26) > 0) - goto LAB22; - -LAB23: memcpy(t4, t16, 8); - -LAB24: t14 = (t0 + 2248); - xsi_vlogvar_wait_assign_value(t14, t4, 0, 0, 7, 0LL); - xsi_set_current_line(44, ng0); - t2 = (t0 + 2568); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t26, 0, 8); - t6 = (t5 + 4); - t9 = *((unsigned int *)t6); - t10 = (~(t9)); - t11 = *((unsigned int *)t5); - t12 = (t11 & t10); - t13 = (t12 & 1U); - if (t13 != 0) - goto LAB28; - -LAB26: if (*((unsigned int *)t6) == 0) - goto LAB25; - -LAB27: t7 = (t26 + 4); - *((unsigned int *)t26) = 1; - *((unsigned int *)t7) = 1; - -LAB28: t8 = (t26 + 4); - t14 = (t5 + 4); - t17 = *((unsigned int *)t5); - t18 = (~(t17)); - *((unsigned int *)t26) = t18; - *((unsigned int *)t8) = 0; - if (*((unsigned int *)t14) != 0) - goto LAB30; - -LAB29: t23 = *((unsigned int *)t26); - *((unsigned int *)t26) = (t23 & 1U); - t24 = *((unsigned int *)t8); - *((unsigned int *)t8) = (t24 & 1U); - t15 = (t0 + 2568); - t16 = (t15 + 56U); - t25 = *((char **)t16); - t27 = ((char*)((ng1))); - xsi_vlogtype_concat(t4, 4, 4, 3U, t27, 2, t25, 1, t26, 1); - t28 = (t0 + 2408); - xsi_vlogvar_wait_assign_value(t28, t4, 0, 0, 4, 0LL); - goto LAB2; - -LAB6: *((unsigned int *)t4) = 1; - goto LAB9; - -LAB11: t19 = *((unsigned int *)t4); - t20 = *((unsigned int *)t16); - *((unsigned int *)t4) = (t19 | t20); - t21 = *((unsigned int *)t15); - t22 = *((unsigned int *)t16); - *((unsigned int *)t15) = (t21 | t22); - goto LAB10; - -LAB12: *((unsigned int *)t26) = 1; - goto LAB15; - -LAB14: t7 = (t26 + 4); - *((unsigned int *)t26) = 1; - *((unsigned int *)t7) = 1; - goto LAB15; - -LAB16: t14 = (t0 + 1688U); - t15 = *((char **)t14); - goto LAB17; - -LAB18: t14 = (t0 + 1848U); - t16 = *((char **)t14); - goto LAB19; - -LAB20: xsi_vlog_unsigned_bit_combine(t4, 7, t15, 7, t16, 7); - goto LAB24; - -LAB22: memcpy(t4, t15, 8); - goto LAB24; - -LAB25: *((unsigned int *)t26) = 1; - goto LAB28; - -LAB30: t19 = *((unsigned int *)t26); - t20 = *((unsigned int *)t14); - *((unsigned int *)t26) = (t19 | t20); - t21 = *((unsigned int *)t8); - t22 = *((unsigned int *)t14); - *((unsigned int *)t8) = (t21 | t22); - goto LAB29; - -} - - -extern void work_m_14181161885881575918_3845763652_init() -{ - static char *pe[] = {(void *)Always_41_0}; - xsi_register_didat("work_m_14181161885881575918_3845763652", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.didat Binary files differdeleted file mode 100644 index b86ca85..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.lin64.o Binary files differdeleted file mode 100644 index 52f30b3..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14181161885881575918_3845763652.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.c deleted file mode 100644 index 848bccb..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.c +++ /dev/null @@ -1,203 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/Increment.v"; -static int ng1[] = {9, 0}; -static int ng2[] = {0, 0}; -static int ng3[] = {1, 0}; - - - -static void Always_28_0(char *t0) -{ - char t4[8]; - char t5[8]; - char t10[8]; - char t46[8]; - char *t1; - char *t2; - char *t3; - char *t6; - char *t7; - char *t8; - char *t9; - char *t11; - char *t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - unsigned int t17; - unsigned int t18; - unsigned int t19; - unsigned int t20; - unsigned int t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - char *t25; - char *t26; - unsigned int t27; - unsigned int t28; - unsigned int t29; - unsigned int t30; - unsigned int t31; - char *t32; - char *t33; - unsigned int t34; - unsigned int t35; - unsigned int t36; - char *t37; - unsigned int t38; - unsigned int t39; - unsigned int t40; - unsigned int t41; - char *t42; - char *t43; - char *t44; - char *t45; - char *t47; - -LAB0: t1 = (t0 + 2360U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(28, ng0); - t2 = (t0 + 2680); - *((int *)t2) = 1; - t3 = (t0 + 2392); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(28, ng0); - -LAB5: xsi_set_current_line(29, ng0); - t6 = (t0 + 1448); - t7 = (t6 + 56U); - t8 = *((char **)t7); - t9 = ((char*)((ng1))); - memset(t10, 0, 8); - t11 = (t8 + 4); - t12 = (t9 + 4); - t13 = *((unsigned int *)t8); - t14 = *((unsigned int *)t9); - t15 = (t13 ^ t14); - t16 = *((unsigned int *)t11); - t17 = *((unsigned int *)t12); - t18 = (t16 ^ t17); - t19 = (t15 | t18); - t20 = *((unsigned int *)t11); - t21 = *((unsigned int *)t12); - t22 = (t20 | t21); - t23 = (~(t22)); - t24 = (t19 & t23); - if (t24 != 0) - goto LAB9; - -LAB6: if (t22 != 0) - goto LAB8; - -LAB7: *((unsigned int *)t10) = 1; - -LAB9: memset(t5, 0, 8); - t26 = (t10 + 4); - t27 = *((unsigned int *)t26); - t28 = (~(t27)); - t29 = *((unsigned int *)t10); - t30 = (t29 & t28); - t31 = (t30 & 1U); - if (t31 != 0) - goto LAB10; - -LAB11: if (*((unsigned int *)t26) != 0) - goto LAB12; - -LAB13: t33 = (t5 + 4); - t34 = *((unsigned int *)t5); - t35 = *((unsigned int *)t33); - t36 = (t34 || t35); - if (t36 > 0) - goto LAB14; - -LAB15: t38 = *((unsigned int *)t5); - t39 = (~(t38)); - t40 = *((unsigned int *)t33); - t41 = (t39 || t40); - if (t41 > 0) - goto LAB16; - -LAB17: if (*((unsigned int *)t33) > 0) - goto LAB18; - -LAB19: if (*((unsigned int *)t5) > 0) - goto LAB20; - -LAB21: memcpy(t4, t46, 8); - -LAB22: t47 = (t0 + 1448); - xsi_vlogvar_assign_value(t47, t4, 0, 0, 4); - goto LAB2; - -LAB8: t25 = (t10 + 4); - *((unsigned int *)t10) = 1; - *((unsigned int *)t25) = 1; - goto LAB9; - -LAB10: *((unsigned int *)t5) = 1; - goto LAB13; - -LAB12: t32 = (t5 + 4); - *((unsigned int *)t5) = 1; - *((unsigned int *)t32) = 1; - goto LAB13; - -LAB14: t37 = ((char*)((ng2))); - goto LAB15; - -LAB16: t42 = (t0 + 1448); - t43 = (t42 + 56U); - t44 = *((char **)t43); - t45 = ((char*)((ng3))); - memset(t46, 0, 8); - xsi_vlog_unsigned_add(t46, 32, t44, 4, t45, 32); - goto LAB17; - -LAB18: xsi_vlog_unsigned_bit_combine(t4, 32, t37, 32, t46, 32); - goto LAB22; - -LAB20: memcpy(t4, t37, 8); - goto LAB22; - -} - - -extern void work_m_14878824473863214981_2647877144_init() -{ - static char *pe[] = {(void *)Always_28_0}; - xsi_register_didat("work_m_14878824473863214981_2647877144", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.didat Binary files differdeleted file mode 100644 index 1af083e..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.lin64.o Binary files differdeleted file mode 100644 index 18e78cf..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_14878824473863214981_2647877144.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c deleted file mode 100644 index 960761b..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.c +++ /dev/null @@ -1,337 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/opt/Xilinx/13.4/ISE_DS/ISE/verilog/src/glbl.v"; -static unsigned int ng1[] = {1U, 0U}; -static unsigned int ng2[] = {0U, 0U}; - - - -static void NetDecl_16_0(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - unsigned int t8; - unsigned int t9; - char *t10; - unsigned int t11; - unsigned int t12; - char *t13; - unsigned int t14; - unsigned int t15; - char *t16; - -LAB0: t1 = (t0 + 6952U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(16, ng0); - t2 = (t0 + 1960U); - t3 = *((char **)t2); - t2 = (t0 + 8640); - t4 = (t2 + 56U); - t5 = *((char **)t4); - t6 = (t5 + 56U); - t7 = *((char **)t6); - memset(t7, 0, 8); - t8 = 1U; - t9 = t8; - t10 = (t3 + 4); - t11 = *((unsigned int *)t3); - t8 = (t8 & t11); - t12 = *((unsigned int *)t10); - t9 = (t9 & t12); - t13 = (t7 + 4); - t14 = *((unsigned int *)t7); - *((unsigned int *)t7) = (t14 | t8); - t15 = *((unsigned int *)t13); - *((unsigned int *)t13) = (t15 | t9); - xsi_driver_vfirst_trans(t2, 0, 0U); - t16 = (t0 + 8512); - *((int *)t16) = 1; - -LAB1: return; -} - -static void Cont_48_1(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7200U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(48, ng0); - t2 = (t0 + 3640); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8704); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8528); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Cont_49_2(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7448U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(49, ng0); - t2 = (t0 + 3800); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8768); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8544); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Cont_50_3(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - unsigned int t10; - unsigned int t11; - char *t12; - unsigned int t13; - unsigned int t14; - char *t15; - unsigned int t16; - unsigned int t17; - char *t18; - -LAB0: t1 = (t0 + 7696U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(50, ng0); - t2 = (t0 + 3960); - t3 = (t2 + 56U); - t4 = *((char **)t3); - t5 = (t0 + 8832); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t7 + 56U); - t9 = *((char **)t8); - memset(t9, 0, 8); - t10 = 1U; - t11 = t10; - t12 = (t4 + 4); - t13 = *((unsigned int *)t4); - t10 = (t10 & t13); - t14 = *((unsigned int *)t12); - t11 = (t11 & t14); - t15 = (t9 + 4); - t16 = *((unsigned int *)t9); - *((unsigned int *)t9) = (t16 | t10); - t17 = *((unsigned int *)t15); - *((unsigned int *)t15) = (t17 | t11); - xsi_driver_vfirst_trans(t5, 0, 0); - t18 = (t0 + 8560); - *((int *)t18) = 1; - -LAB1: return; -} - -static void Initial_52_4(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - -LAB0: t1 = (t0 + 7944U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(52, ng0); - -LAB4: xsi_set_current_line(53, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3640); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(54, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3960); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(55, ng0); - t2 = (t0 + 7752); - xsi_process_wait(t2, 100000LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(56, ng0); - t3 = ((char*)((ng2))); - t4 = (t0 + 3640); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 1); - xsi_set_current_line(57, ng0); - t2 = ((char*)((ng2))); - t3 = (t0 + 3960); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - goto LAB1; - -} - -static void Initial_60_5(char *t0) -{ - char *t1; - char *t2; - char *t3; - char *t4; - -LAB0: t1 = (t0 + 8192U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(60, ng0); - -LAB4: xsi_set_current_line(61, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 3800); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 1); - xsi_set_current_line(62, ng0); - t2 = (t0 + 8000); - xsi_process_wait(t2, 0LL); - *((char **)t1) = &&LAB5; - -LAB1: return; -LAB5: xsi_set_current_line(63, ng0); - t3 = ((char*)((ng2))); - t4 = (t0 + 3800); - xsi_vlogvar_assign_value(t4, t3, 0, 0, 1); - goto LAB1; - -} - - -extern void work_m_16541823861846354283_2073120511_init() -{ - static char *pe[] = {(void *)NetDecl_16_0,(void *)Cont_48_1,(void *)Cont_49_2,(void *)Cont_50_3,(void *)Initial_52_4,(void *)Initial_60_5}; - xsi_register_didat("work_m_16541823861846354283_2073120511", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat Binary files differdeleted file mode 100644 index 542d5ed..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o Binary files differdeleted file mode 100644 index b79f2d7..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_16541823861846354283_2073120511.lin64.o +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.c b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.c deleted file mode 100644 index dd4c38d..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.c +++ /dev/null @@ -1,538 +0,0 @@ -/**********************************************************************/ -/* ____ ____ */ -/* / /\/ / */ -/* /___/ \ / */ -/* \ \ \/ */ -/* \ \ Copyright (c) 2003-2009 Xilinx, Inc. */ -/* / / All Right Reserved. */ -/* /---/ /\ */ -/* \ \ / \ */ -/* \___\/\___\ */ -/***********************************************************************/ - -/* This file is designed for use with ISim build 0x8ddf5b5d */ - -#define XSI_HIDE_SYMBOL_SPEC true -#include "xsi.h" -#include <memory.h> -#ifdef __GNUC__ -#include <stdlib.h> -#else -#include <malloc.h> -#define alloca _alloca -#endif -static const char *ng0 = "/home/michael/Documents/School/EC311/lab4/BCD2Bin.v"; -static int ng1[] = {0, 0}; -static int ng2[] = {7, 0}; -static int ng3[] = {1, 0}; -static int ng4[] = {5, 0}; -static int ng5[] = {3, 0}; -static int ng6[] = {19, 0}; -static int ng7[] = {16, 0}; -static int ng8[] = {15, 0}; -static int ng9[] = {12, 0}; -static int ng10[] = {11, 0}; -static int ng11[] = {8, 0}; - - - -static void Always_33_0(char *t0) -{ - char t4[8]; - char t20[8]; - char t28[8]; - char t38[8]; - char t40[8]; - char t41[8]; - char t42[8]; - char *t1; - char *t2; - char *t3; - char *t5; - char *t6; - char *t7; - char *t8; - char *t9; - char *t10; - char *t11; - unsigned int t12; - unsigned int t13; - unsigned int t14; - unsigned int t15; - unsigned int t16; - char *t17; - char *t18; - char *t19; - char *t21; - unsigned int t22; - unsigned int t23; - unsigned int t24; - unsigned int t25; - unsigned int t26; - unsigned int t27; - char *t29; - char *t30; - unsigned int t31; - unsigned int t32; - unsigned int t33; - unsigned int t34; - unsigned int t35; - unsigned int t36; - char *t37; - char *t39; - char *t43; - char *t44; - char *t45; - char *t46; - char *t47; - char *t48; - unsigned int t49; - int t50; - char *t51; - unsigned int t52; - int t53; - int t54; - char *t55; - unsigned int t56; - int t57; - int t58; - unsigned int t59; - int t60; - unsigned int t61; - unsigned int t62; - int t63; - int t64; - -LAB0: t1 = (t0 + 3000U); - t2 = *((char **)t1); - if (t2 == 0) - goto LAB2; - -LAB3: goto *t2; - -LAB2: xsi_set_current_line(33, ng0); - t2 = (t0 + 3320); - *((int *)t2) = 1; - t3 = (t0 + 3032); - *((char **)t3) = t2; - *((char **)t1) = &&LAB4; - -LAB1: return; -LAB4: xsi_set_current_line(33, ng0); - -LAB5: xsi_set_current_line(35, ng0); - t5 = (t0 + 1768); - t6 = (t5 + 56U); - t7 = *((char **)t6); - t8 = (t0 + 1368U); - t9 = *((char **)t8); - t8 = (t0 + 1208U); - t10 = *((char **)t8); - t8 = (t0 + 1048U); - t11 = *((char **)t8); - xsi_vlogtype_concat(t4, 20, 20, 4U, t11, 4, t10, 4, t9, 4, t7, 8); - t8 = (t0 + 2088); - xsi_vlogvar_assign_value(t8, t4, 0, 0, 20); - xsi_set_current_line(39, ng0); - xsi_set_current_line(39, ng0); - t2 = ((char*)((ng1))); - t3 = (t0 + 1928); - xsi_vlogvar_assign_value(t3, t2, 0, 0, 3); - -LAB6: t2 = (t0 + 1928); - t3 = (t2 + 56U); - t5 = *((char **)t3); - t6 = ((char*)((ng2))); - memset(t4, 0, 8); - t7 = (t5 + 4); - if (*((unsigned int *)t7) != 0) - goto LAB8; - -LAB7: t8 = (t6 + 4); - if (*((unsigned int *)t8) != 0) - goto LAB8; - -LAB11: if (*((unsigned int *)t5) < *((unsigned int *)t6)) - goto LAB9; - -LAB10: t10 = (t4 + 4); - t12 = *((unsigned int *)t10); - t13 = (~(t12)); - t14 = *((unsigned int *)t4); - t15 = (t14 & t13); - t16 = (t15 != 0); - if (t16 > 0) - goto LAB12; - -LAB13: xsi_set_current_line(52, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t5 = *((char **)t3); - t6 = ((char*)((ng3))); - memset(t4, 0, 8); - xsi_vlog_unsigned_rshift(t4, 20, t5, 20, t6, 32); - t7 = (t0 + 2088); - xsi_vlogvar_assign_value(t7, t4, 0, 0, 20); - xsi_set_current_line(54, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t4, 0, 8); - t6 = (t4 + 4); - t7 = (t5 + 4); - t12 = *((unsigned int *)t5); - t13 = (t12 >> 0); - *((unsigned int *)t4) = t13; - t14 = *((unsigned int *)t7); - t15 = (t14 >> 0); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t4); - *((unsigned int *)t4) = (t16 & 255U); - t22 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t22 & 255U); - t8 = (t0 + 1768); - xsi_vlogvar_assign_value(t8, t4, 0, 0, 8); - goto LAB2; - -LAB8: t9 = (t4 + 4); - *((unsigned int *)t4) = 1; - *((unsigned int *)t9) = 1; - goto LAB10; - -LAB9: *((unsigned int *)t4) = 1; - goto LAB10; - -LAB12: xsi_set_current_line(39, ng0); - -LAB14: xsi_set_current_line(40, ng0); - t11 = (t0 + 2088); - t17 = (t11 + 56U); - t18 = *((char **)t17); - t19 = ((char*)((ng3))); - memset(t20, 0, 8); - xsi_vlog_unsigned_rshift(t20, 20, t18, 20, t19, 32); - t21 = (t0 + 2088); - xsi_vlogvar_assign_value(t21, t20, 0, 0, 20); - xsi_set_current_line(41, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t4, 0, 8); - t6 = (t4 + 4); - t7 = (t5 + 4); - t12 = *((unsigned int *)t5); - t13 = (t12 >> 16); - *((unsigned int *)t4) = t13; - t14 = *((unsigned int *)t7); - t15 = (t14 >> 16); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t4); - *((unsigned int *)t4) = (t16 & 15U); - t22 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t4 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB16; - -LAB15: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB16; - -LAB19: if (*((unsigned int *)t4) < *((unsigned int *)t8)) - goto LAB18; - -LAB17: *((unsigned int *)t20) = 1; - -LAB18: t17 = (t20 + 4); - t23 = *((unsigned int *)t17); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB20; - -LAB21: -LAB22: xsi_set_current_line(44, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t4, 0, 8); - t6 = (t4 + 4); - t7 = (t5 + 4); - t12 = *((unsigned int *)t5); - t13 = (t12 >> 12); - *((unsigned int *)t4) = t13; - t14 = *((unsigned int *)t7); - t15 = (t14 >> 12); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t4); - *((unsigned int *)t4) = (t16 & 15U); - t22 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t4 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB27; - -LAB26: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB27; - -LAB30: if (*((unsigned int *)t4) < *((unsigned int *)t8)) - goto LAB29; - -LAB28: *((unsigned int *)t20) = 1; - -LAB29: t17 = (t20 + 4); - t23 = *((unsigned int *)t17); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB31; - -LAB32: -LAB33: xsi_set_current_line(47, ng0); - t2 = (t0 + 2088); - t3 = (t2 + 56U); - t5 = *((char **)t3); - memset(t4, 0, 8); - t6 = (t4 + 4); - t7 = (t5 + 4); - t12 = *((unsigned int *)t5); - t13 = (t12 >> 8); - *((unsigned int *)t4) = t13; - t14 = *((unsigned int *)t7); - t15 = (t14 >> 8); - *((unsigned int *)t6) = t15; - t16 = *((unsigned int *)t4); - *((unsigned int *)t4) = (t16 & 15U); - t22 = *((unsigned int *)t6); - *((unsigned int *)t6) = (t22 & 15U); - t8 = ((char*)((ng4))); - memset(t20, 0, 8); - t9 = (t4 + 4); - if (*((unsigned int *)t9) != 0) - goto LAB38; - -LAB37: t10 = (t8 + 4); - if (*((unsigned int *)t10) != 0) - goto LAB38; - -LAB41: if (*((unsigned int *)t4) < *((unsigned int *)t8)) - goto LAB40; - -LAB39: *((unsigned int *)t20) = 1; - -LAB40: t17 = (t20 + 4); - t23 = *((unsigned int *)t17); - t24 = (~(t23)); - t25 = *((unsigned int *)t20); - t26 = (t25 & t24); - t27 = (t26 != 0); - if (t27 > 0) - goto LAB42; - -LAB43: -LAB44: xsi_set_current_line(39, ng0); - t2 = (t0 + 1928); - t3 = (t2 + 56U); - t5 = *((char **)t3); - t6 = ((char*)((ng3))); - memset(t4, 0, 8); - xsi_vlog_unsigned_add(t4, 32, t5, 3, t6, 32); - t7 = (t0 + 1928); - xsi_vlogvar_assign_value(t7, t4, 0, 0, 3); - goto LAB6; - -LAB16: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB18; - -LAB20: xsi_set_current_line(41, ng0); - -LAB23: xsi_set_current_line(42, ng0); - t18 = (t0 + 2088); - t19 = (t18 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 16); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 16); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_minus(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 2088); - t43 = (t0 + 2088); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng6))); - t47 = ((char*)((ng7))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB24; - -LAB25: goto LAB22; - -LAB24: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB25; - -LAB27: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB29; - -LAB31: xsi_set_current_line(44, ng0); - -LAB34: xsi_set_current_line(45, ng0); - t18 = (t0 + 2088); - t19 = (t18 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 12); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 12); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_minus(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 2088); - t43 = (t0 + 2088); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng8))); - t47 = ((char*)((ng9))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB35; - -LAB36: goto LAB33; - -LAB35: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB36; - -LAB38: t11 = (t20 + 4); - *((unsigned int *)t20) = 1; - *((unsigned int *)t11) = 1; - goto LAB40; - -LAB42: xsi_set_current_line(47, ng0); - -LAB45: xsi_set_current_line(48, ng0); - t18 = (t0 + 2088); - t19 = (t18 + 56U); - t21 = *((char **)t19); - memset(t28, 0, 8); - t29 = (t28 + 4); - t30 = (t21 + 4); - t31 = *((unsigned int *)t21); - t32 = (t31 >> 8); - *((unsigned int *)t28) = t32; - t33 = *((unsigned int *)t30); - t34 = (t33 >> 8); - *((unsigned int *)t29) = t34; - t35 = *((unsigned int *)t28); - *((unsigned int *)t28) = (t35 & 15U); - t36 = *((unsigned int *)t29); - *((unsigned int *)t29) = (t36 & 15U); - t37 = ((char*)((ng5))); - memset(t38, 0, 8); - xsi_vlog_unsigned_minus(t38, 32, t28, 32, t37, 32); - t39 = (t0 + 2088); - t43 = (t0 + 2088); - t44 = (t43 + 72U); - t45 = *((char **)t44); - t46 = ((char*)((ng10))); - t47 = ((char*)((ng11))); - xsi_vlog_convert_partindices(t40, t41, t42, ((int*)(t45)), 2, t46, 32, 1, t47, 32, 1); - t48 = (t40 + 4); - t49 = *((unsigned int *)t48); - t50 = (!(t49)); - t51 = (t41 + 4); - t52 = *((unsigned int *)t51); - t53 = (!(t52)); - t54 = (t50 && t53); - t55 = (t42 + 4); - t56 = *((unsigned int *)t55); - t57 = (!(t56)); - t58 = (t54 && t57); - if (t58 == 1) - goto LAB46; - -LAB47: goto LAB44; - -LAB46: t59 = *((unsigned int *)t42); - t60 = (t59 + 0); - t61 = *((unsigned int *)t40); - t62 = *((unsigned int *)t41); - t63 = (t61 - t62); - t64 = (t63 + 1); - xsi_vlogvar_assign_value(t39, t38, t60, *((unsigned int *)t41), t64); - goto LAB47; - -} - - -extern void work_m_17579661360444318263_0092613024_init() -{ - static char *pe[] = {(void *)Always_33_0}; - xsi_register_didat("work_m_17579661360444318263_0092613024", "isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.didat"); - xsi_register_executes(pe); -} diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.didat b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.didat Binary files differdeleted file mode 100644 index 15f3a36..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.didat +++ /dev/null diff --git a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.lin64.o b/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.lin64.o Binary files differdeleted file mode 100644 index 44deea7..0000000 --- a/isim/Test_ContdownController_isim_beh.exe.sim/work/m_17579661360444318263_0092613024.lin64.o +++ /dev/null diff --git a/isim/isim_usage_statistics.html b/isim/isim_usage_statistics.html index c994ede..b976c1d 100644 --- a/isim/isim_usage_statistics.html +++ b/isim/isim_usage_statistics.html @@ -1,16 +1,16 @@ -<TABLE BORDER CELLSPACING=0 WIDTH='100%'> -<xtag-section name="ISimStatistics"> -<TR ALIGN=CENTER BGCOLOR='#99CCFF'><TD COLSPAN=1><B>ISim Statistics</B></TD></TR> -<TR><TD><xtag-isim-property-name>Xilinx HDL Libraries Used</xtag-isim-property-name>=<xtag-isim-property-value></xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Fuse Resource Usage</xtag-isim-property-name>=<xtag-isim-property-value>1610 ms, 393132 KB</xtag-isim-property-value></TD></TR> - -<TR><TD><xtag-isim-property-name>Total Signals</xtag-isim-property-name>=<xtag-isim-property-value>67</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Total Nets</xtag-isim-property-name>=<xtag-isim-property-value>223</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Total Blocks</xtag-isim-property-name>=<xtag-isim-property-value>16</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Total Processes</xtag-isim-property-name>=<xtag-isim-property-value>55</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Total Simulation Time</xtag-isim-property-name>=<xtag-isim-property-value>1 us</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Simulation Resource Usage</xtag-isim-property-name>=<xtag-isim-property-value>0.07 sec, 256151 KB</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Simulation Mode</xtag-isim-property-name>=<xtag-isim-property-value>gui</xtag-isim-property-value></TD></TR> -<TR><TD><xtag-isim-property-name>Hardware CoSim</xtag-isim-property-name>=<xtag-isim-property-value>0</xtag-isim-property-value></TD></TR> -</xtag-section> -</TABLE> +<TABLE BORDER CELLSPACING=0 WIDTH='100%'>
+<xtag-section name="ISimStatistics">
+<TR ALIGN=CENTER BGCOLOR='#99CCFF'><TD COLSPAN=1><B>ISim Statistics</B></TD></TR>
+<TR><TD><xtag-isim-property-name>Xilinx HDL Libraries Used</xtag-isim-property-name>=<xtag-isim-property-value></xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Fuse Resource Usage</xtag-isim-property-name>=<xtag-isim-property-value>467 ms, 26940 KB</xtag-isim-property-value></TD></TR>
+
+<TR><TD><xtag-isim-property-name>Total Signals</xtag-isim-property-name>=<xtag-isim-property-value>18</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Total Nets</xtag-isim-property-name>=<xtag-isim-property-value>32</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Total Blocks</xtag-isim-property-name>=<xtag-isim-property-value>3</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Total Processes</xtag-isim-property-name>=<xtag-isim-property-value>14</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Total Simulation Time</xtag-isim-property-name>=<xtag-isim-property-value>10 us</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Simulation Resource Usage</xtag-isim-property-name>=<xtag-isim-property-value>0.140401 sec, 795467 KB</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Simulation Mode</xtag-isim-property-name>=<xtag-isim-property-value>gui</xtag-isim-property-value></TD></TR>
+<TR><TD><xtag-isim-property-name>Hardware CoSim</xtag-isim-property-name>=<xtag-isim-property-value>0</xtag-isim-property-value></TD></TR>
+</xtag-section>
+</TABLE>
diff --git a/isim/pn_info b/isim/pn_info index c5644b4..c13701e 100644 --- a/isim/pn_info +++ b/isim/pn_info @@ -1 +1 @@ -13.4 +13.3
diff --git a/isim/work/@b@c@d2@bin.sdb b/isim/work/@b@c@d2@bin.sdb Binary files differdeleted file mode 100644 index 5446114..0000000 --- a/isim/work/@b@c@d2@bin.sdb +++ /dev/null diff --git a/isim/work/@bin2@b@c@d.sdb b/isim/work/@bin2@b@c@d.sdb Binary files differdeleted file mode 100644 index b05009d..0000000 --- a/isim/work/@bin2@b@c@d.sdb +++ /dev/null diff --git a/isim/work/@clock@divider.sdb b/isim/work/@clock@divider.sdb Binary files differdeleted file mode 100644 index 643e0f3..0000000 --- a/isim/work/@clock@divider.sdb +++ /dev/null diff --git a/isim/work/@countdown.sdb b/isim/work/@countdown.sdb Binary files differindex 6f2fe1c..834d06e 100644..100755 --- a/isim/work/@countdown.sdb +++ b/isim/work/@countdown.sdb diff --git a/isim/work/@countdown@controller.sdb b/isim/work/@countdown@controller.sdb Binary files differdeleted file mode 100644 index 7eb46a4..0000000 --- a/isim/work/@countdown@controller.sdb +++ /dev/null diff --git a/isim/work/@display@controller.sdb b/isim/work/@display@controller.sdb Binary files differdeleted file mode 100644 index cacbd04..0000000 --- a/isim/work/@display@controller.sdb +++ /dev/null diff --git a/isim/work/@increment.sdb b/isim/work/@increment.sdb Binary files differdeleted file mode 100644 index fc0650a..0000000 --- a/isim/work/@increment.sdb +++ /dev/null diff --git a/isim/work/@sev@seg@disp.sdb b/isim/work/@sev@seg@disp.sdb Binary files differdeleted file mode 100644 index a249a35..0000000 --- a/isim/work/@sev@seg@disp.sdb +++ /dev/null diff --git a/isim/work/@test_@contdown@controller.sdb b/isim/work/@test_@contdown@controller.sdb Binary files differdeleted file mode 100644 index 6bc1184..0000000 --- a/isim/work/@test_@contdown@controller.sdb +++ /dev/null diff --git a/isim/work/debouncer.sdb b/isim/work/debouncer.sdb Binary files differdeleted file mode 100644 index dbfeaa0..0000000 --- a/isim/work/debouncer.sdb +++ /dev/null diff --git a/isim/work/glbl.sdb b/isim/work/glbl.sdb Binary files differindex cabad6c..4063c0b 100644..100755 --- a/isim/work/glbl.sdb +++ b/isim/work/glbl.sdb @@ -22,7 +22,41 @@ <sourceproject xmlns="http://www.xilinx.com/XMLSchema" xil_pn:fileType="FILE_XISE" xil_pn:name="lab4.xise"/>
<files xmlns="http://www.xilinx.com/XMLSchema">
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NGDBUILD_LOG" xil_pn:name="CountdownController.bld"/>
+ <file xil_pn:fileType="FILE_CMD_LOG" xil_pn:name="CountdownController.cmd_log"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_LSO" xil_pn:name="CountdownController.lso"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NCD" xil_pn:name="CountdownController.ncd" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NGC" xil_pn:name="CountdownController.ngc"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NGD" xil_pn:name="CountdownController.ngd"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NGR" xil_pn:name="CountdownController.ngr"/>
+ <file xil_pn:fileType="FILE_PAD_MISC" xil_pn:name="CountdownController.pad"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_PAR_REPORT" xil_pn:name="CountdownController.par" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_PCF" xil_pn:name="CountdownController.pcf" xil_pn:subbranch="Map"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="CountdownController.prj"/>
+ <file xil_pn:fileType="FILE_TRCE_MISC" xil_pn:name="CountdownController.ptwx"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_XST_STX" xil_pn:name="CountdownController.stx"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_XST_REPORT" xil_pn:name="CountdownController.syr"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_TIMING_TXT_REPORT" xil_pn:name="CountdownController.twr" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_TIMING_XML_REPORT" xil_pn:name="CountdownController.twx" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_UNROUTES" xil_pn:name="CountdownController.unroutes" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_BITGEN_REPORT" xil_pn:name="CountdownController.ut" xil_pn:subbranch="FPGAConfiguration"/>
+ <file xil_pn:fileType="FILE_XPI" xil_pn:name="CountdownController.xpi"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_XST" xil_pn:name="CountdownController.xst"/>
+ <file xil_pn:fileType="FILE_NCD" xil_pn:name="CountdownController_guide.ncd" xil_pn:origination="imported"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="CountdownController_isim_beh.exe"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_MAP_REPORT" xil_pn:name="CountdownController_map.map" xil_pn:subbranch="Map"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_MAP_REPORT" xil_pn:name="CountdownController_map.mrp" xil_pn:subbranch="Map"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NCD" xil_pn:name="CountdownController_map.ncd" xil_pn:subbranch="Map"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_NGM" xil_pn:name="CountdownController_map.ngm" xil_pn:subbranch="Map"/>
+ <file xil_pn:fileType="FILE_XRPT" xil_pn:name="CountdownController_map.xrpt"/>
+ <file xil_pn:fileType="FILE_XRPT" xil_pn:name="CountdownController_ngdbuild.xrpt"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_PAD_EXCEL_REPORT" xil_pn:name="CountdownController_pad.csv" xil_pn:subbranch="Par"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_PAD_TXT_REPORT" xil_pn:name="CountdownController_pad.txt" xil_pn:subbranch="Par"/>
+ <file xil_pn:fileType="FILE_XRPT" xil_pn:name="CountdownController_par.xrpt"/>
+ <file xil_pn:fileType="FILE_HTML" xil_pn:name="CountdownController_summary.html"/>
+ <file xil_pn:fileType="FILE_FITTER_REPORT" xil_pn:name="CountdownController_summary.xml"/>
+ <file xil_pn:fileType="FILE_WEBTALK" xil_pn:name="CountdownController_usage.xml"/>
+ <file xil_pn:fileType="FILE_XRPT" xil_pn:name="CountdownController_xst.xrpt"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="Increment_isim_beh.exe"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="SevSegDisp_isim_beh.exe"/>
<file xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="SevSegDisp_stx_beh.prj"/>
@@ -30,19 +64,38 @@ <file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_Bin2BCD_isim_beh.exe"/>
<file xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="TEST_Bin2BCD_stx_beh.prj"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_ClockDivider_isim_beh.exe"/>
+ <file xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="TEST_Countdown_beh.prj"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_Countdown_isim_beh.exe"/>
+ <file xil_pn:fileType="FILE_ISIM_MISC" xil_pn:name="TEST_Countdown_isim_beh.wdb"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_DisplayController_isim_beh.exe"/>
<file xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="TEST_DisplayController_stx_beh.prj"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_Increment_isim_beh.exe"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="TEST_SevSegDisp_isim_beh.exe"/>
- <file xil_pn:fileType="FILE_XST_PROJECT" xil_pn:name="Test_ContdownController_beh.prj"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_ISIM_EXE" xil_pn:name="Test_ContdownController_isim_beh.exe"/>
- <file xil_pn:fileType="FILE_ISIM_MISC" xil_pn:name="Test_ContdownController_isim_beh.wdb"/>
+ <file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="_ngo"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/bitgen.xmsgs"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/map.xmsgs"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/ngdbuild.xmsgs"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/par.xmsgs"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/trce.xmsgs"/>
+ <file xil_pn:fileType="FILE_XMSGS" xil_pn:name="_xmsgs/xst.xmsgs"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_BITGEN_REPORT" xil_pn:name="countdowncontroller.bgn" xil_pn:subbranch="FPGAConfiguration"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_BIT" xil_pn:name="countdowncontroller.bit" xil_pn:subbranch="FPGAConfiguration"/>
+ <file xil_pn:branch="Implementation" xil_pn:fileType="FILE_BITGEN_DRC" xil_pn:name="countdowncontroller.drc" xil_pn:subbranch="FPGAConfiguration"/>
+ <file xil_pn:fileType="FILE_LL" xil_pn:name="countdowncontroller.ll"/>
+ <file xil_pn:fileType="FILE_MSK" xil_pn:name="countdowncontroller.msk"/>
<file xil_pn:fileType="FILE_LOG" xil_pn:name="fuse.log"/>
<file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="isim"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_CMD" xil_pn:name="isim.cmd"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_LOG" xil_pn:name="isim.log"/>
+ <file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="planAhead_run_1"/>
+ <file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="planAhead_run_2"/>
+ <file xil_pn:fileType="FILE_HTML" xil_pn:name="usage_statistics_webtalk.html"/>
+ <file xil_pn:fileType="FILE_LOG" xil_pn:name="webtalk.log"/>
+ <file xil_pn:fileType="FILE_FITTER_REPORT" xil_pn:name="webtalk_pn.xml"/>
<file xil_pn:branch="BehavioralSim" xil_pn:fileType="FILE_INI" xil_pn:name="xilinxsim.ini"/>
+ <file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="xlnx_auto_0_xdb"/>
+ <file xil_pn:fileType="FILE_DIRECTORY" xil_pn:name="xst"/>
</files>
<transforms xmlns="http://www.xilinx.com/XMLSchema">
@@ -54,7 +107,7 @@ <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
</transform>
- <transform xil_pn:end_ts="1332349811" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_copyAbstractToPostAbstractSimulation" xil_pn:start_ts="1332349811">
+ <transform xil_pn:end_ts="1332368691" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_copyAbstractToPostAbstractSimulation" xil_pn:start_ts="1332368690">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
<status xil_pn:value="OutOfDateForInputs"/>
@@ -79,11 +132,11 @@ <outfile xil_pn:name="Test_ContdownController.v"/>
<outfile xil_pn:name="debouncer.v"/>
</transform>
- <transform xil_pn:end_ts="1332349894" xil_pn:name="TRAN_xawsToSimhdl" xil_pn:prop_ck="2118202629798375462" xil_pn:start_ts="1332349894">
+ <transform xil_pn:end_ts="1332366388" xil_pn:name="TRAN_xawsToSimhdl" xil_pn:prop_ck="-4857619504586092297" xil_pn:start_ts="1332366388">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
</transform>
- <transform xil_pn:end_ts="1332349894" xil_pn:name="TRAN_schematicsToHdlSim" xil_pn:prop_ck="-5189240632515767324" xil_pn:start_ts="1332349894">
+ <transform xil_pn:end_ts="1332366388" xil_pn:name="TRAN_schematicsToHdlSim" xil_pn:prop_ck="719578379836602037" xil_pn:start_ts="1332366388">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
</transform>
@@ -91,7 +144,7 @@ <status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
</transform>
- <transform xil_pn:end_ts="1332349811" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_copyPostAbstractToPreSimulation" xil_pn:start_ts="1332349811">
+ <transform xil_pn:end_ts="1332368691" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_copyPostAbstractToPreSimulation" xil_pn:start_ts="1332368691">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
<status xil_pn:value="OutOfDateForInputs"/>
@@ -117,7 +170,7 @@ <outfile xil_pn:name="Test_ContdownController.v"/>
<outfile xil_pn:name="debouncer.v"/>
</transform>
- <transform xil_pn:end_ts="1332349897" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_ISimulateBehavioralModelRunFuse" xil_pn:prop_ck="-4271467981599954997" xil_pn:start_ts="1332349894">
+ <transform xil_pn:end_ts="1332368697" xil_pn:in_ck="-1165842576399624296" xil_pn:name="TRAN_ISimulateBehavioralModelRunFuse" xil_pn:prop_ck="7712315669645172589" xil_pn:start_ts="1332368691">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
<status xil_pn:value="OutOfDateForInputs"/>
@@ -126,24 +179,142 @@ <status xil_pn:value="OutOfDateForOutputs"/>
<status xil_pn:value="InputChanged"/>
<status xil_pn:value="OutputChanged"/>
- <outfile xil_pn:name="Test_ContdownController_beh.prj"/>
- <outfile xil_pn:name="Test_ContdownController_isim_beh.exe"/>
+ <outfile xil_pn:name="TEST_Countdown_beh.prj"/>
+ <outfile xil_pn:name="TEST_Countdown_isim_beh.exe"/>
<outfile xil_pn:name="fuse.log"/>
<outfile xil_pn:name="isim"/>
<outfile xil_pn:name="isim.log"/>
<outfile xil_pn:name="xilinxsim.ini"/>
</transform>
- <transform xil_pn:end_ts="1332349979" xil_pn:in_ck="5762157264321675852" xil_pn:name="TRAN_ISimulateBehavioralModel" xil_pn:prop_ck="-5372246553278025746" xil_pn:start_ts="1332349978">
+ <transform xil_pn:end_ts="1332368697" xil_pn:in_ck="-4148818585088951615" xil_pn:name="TRAN_ISimulateBehavioralModel" xil_pn:prop_ck="1571379819253400256" xil_pn:start_ts="1332368697">
<status xil_pn:value="SuccessfullyRun"/>
<status xil_pn:value="ReadyToRun"/>
<status xil_pn:value="OutOfDateForProperties"/>
<status xil_pn:value="OutOfDateForPredecessor"/>
<status xil_pn:value="OutOfDateForOutputs"/>
<status xil_pn:value="OutputChanged"/>
- <outfile xil_pn:name="Test_ContdownController_isim_beh.wdb"/>
+ <outfile xil_pn:name="TEST_Countdown_isim_beh.wdb"/>
<outfile xil_pn:name="isim.cmd"/>
<outfile xil_pn:name="isim.log"/>
</transform>
+ <transform xil_pn:end_ts="1332365926" xil_pn:name="TRAN_copyInitialToXSTAbstractSynthesis" xil_pn:start_ts="1332365926">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365926" xil_pn:name="TRAN_schematicsToHdl" xil_pn:prop_ck="7337048813756958010" xil_pn:start_ts="1332365926">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365926" xil_pn:name="TRAN_regenerateCores" xil_pn:prop_ck="-8061018727666707863" xil_pn:start_ts="1332365926">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365926" xil_pn:name="TRAN_SubProjectAbstractToPreProxy" xil_pn:start_ts="1332365926">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365926" xil_pn:name="TRAN_xawsTohdl" xil_pn:prop_ck="-8504576579590053380" xil_pn:start_ts="1332365926">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365955" xil_pn:name="TRAN_SubProjectPreToStructuralProxy" xil_pn:prop_ck="1106364426758808884" xil_pn:start_ts="1332365955">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332365955" xil_pn:name="TRAN_platgen" xil_pn:prop_ck="-9216751566265043661" xil_pn:start_ts="1332365955">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371389" xil_pn:in_ck="-4670915187525789544" xil_pn:name="TRANEXT_xstsynthesize_spartan6" xil_pn:prop_ck="-8951255076951397352" xil_pn:start_ts="1332371375">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="WarningsGenerated"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <status xil_pn:value="OutOfDateForOutputs"/>
+ <status xil_pn:value="OutputChanged"/>
+ <outfile xil_pn:name="CountdownController.lso"/>
+ <outfile xil_pn:name="CountdownController.ngc"/>
+ <outfile xil_pn:name="CountdownController.ngr"/>
+ <outfile xil_pn:name="CountdownController.prj"/>
+ <outfile xil_pn:name="CountdownController.stx"/>
+ <outfile xil_pn:name="CountdownController.syr"/>
+ <outfile xil_pn:name="CountdownController.xst"/>
+ <outfile xil_pn:name="CountdownController_xst.xrpt"/>
+ <outfile xil_pn:name="_xmsgs/xst.xmsgs"/>
+ <outfile xil_pn:name="webtalk_pn.xml"/>
+ <outfile xil_pn:name="xst"/>
+ </transform>
+ <transform xil_pn:end_ts="1332366211" xil_pn:in_ck="1005644938514820913" xil_pn:name="TRAN_compileBCD2" xil_pn:prop_ck="1992340795875405991" xil_pn:start_ts="1332366211">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371397" xil_pn:in_ck="-9194355795869974340" xil_pn:name="TRANEXT_ngdbuild_FPGA" xil_pn:prop_ck="8792522646841633194" xil_pn:start_ts="1332371389">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <outfile xil_pn:name="CountdownController.bld"/>
+ <outfile xil_pn:name="CountdownController.ngd"/>
+ <outfile xil_pn:name="CountdownController_ngdbuild.xrpt"/>
+ <outfile xil_pn:name="_ngo"/>
+ <outfile xil_pn:name="_xmsgs/ngdbuild.xmsgs"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371410" xil_pn:in_ck="-7922552045464766563" xil_pn:name="TRANEXT_map_spartan6" xil_pn:prop_ck="1463976855095865663" xil_pn:start_ts="1332371397">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <status xil_pn:value="OutOfDateForOutputs"/>
+ <status xil_pn:value="OutputChanged"/>
+ <outfile xil_pn:name="CountdownController.pcf"/>
+ <outfile xil_pn:name="CountdownController_map.map"/>
+ <outfile xil_pn:name="CountdownController_map.mrp"/>
+ <outfile xil_pn:name="CountdownController_map.ncd"/>
+ <outfile xil_pn:name="CountdownController_map.ngm"/>
+ <outfile xil_pn:name="CountdownController_map.xrpt"/>
+ <outfile xil_pn:name="CountdownController_summary.xml"/>
+ <outfile xil_pn:name="CountdownController_usage.xml"/>
+ <outfile xil_pn:name="_xmsgs/map.xmsgs"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371440" xil_pn:in_ck="1549163289845114774" xil_pn:name="TRANEXT_par_spartan6" xil_pn:prop_ck="-1178055513630676559" xil_pn:start_ts="1332371410">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <outfile xil_pn:name="CountdownController.ncd"/>
+ <outfile xil_pn:name="CountdownController.pad"/>
+ <outfile xil_pn:name="CountdownController.par"/>
+ <outfile xil_pn:name="CountdownController.ptwx"/>
+ <outfile xil_pn:name="CountdownController.unroutes"/>
+ <outfile xil_pn:name="CountdownController.xpi"/>
+ <outfile xil_pn:name="CountdownController_pad.csv"/>
+ <outfile xil_pn:name="CountdownController_pad.txt"/>
+ <outfile xil_pn:name="CountdownController_par.xrpt"/>
+ <outfile xil_pn:name="_xmsgs/par.xmsgs"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371472" xil_pn:in_ck="1005644938514813288" xil_pn:name="TRANEXT_bitFile_spartan6" xil_pn:prop_ck="-1367077980582467795" xil_pn:start_ts="1332371440">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="WarningsGenerated"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <status xil_pn:value="OutOfDateForOutputs"/>
+ <status xil_pn:value="OutputChanged"/>
+ <outfile xil_pn:name="CountdownController.ut"/>
+ <outfile xil_pn:name="_xmsgs/bitgen.xmsgs"/>
+ <outfile xil_pn:name="countdowncontroller.bgn"/>
+ <outfile xil_pn:name="countdowncontroller.bit"/>
+ <outfile xil_pn:name="countdowncontroller.drc"/>
+ <outfile xil_pn:name="countdowncontroller.ll"/>
+ <outfile xil_pn:name="countdowncontroller.msk"/>
+ <outfile xil_pn:name="usage_statistics_webtalk.html"/>
+ <outfile xil_pn:name="webtalk.log"/>
+ <outfile xil_pn:name="webtalk_pn.xml"/>
+ </transform>
+ <transform xil_pn:end_ts="1332368819" xil_pn:in_ck="-90294923880617102" xil_pn:name="TRAN_impactProgrammingTool" xil_pn:prop_ck="2682241697568822907" xil_pn:start_ts="1332368819">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <status xil_pn:value="OutOfDateForInputs"/>
+ <status xil_pn:value="InputChanged"/>
+ </transform>
+ <transform xil_pn:end_ts="1332371440" xil_pn:in_ck="8666793638143323033" xil_pn:name="TRAN_postRouteTrce" xil_pn:prop_ck="445577401284416185" xil_pn:start_ts="1332371433">
+ <status xil_pn:value="SuccessfullyRun"/>
+ <status xil_pn:value="ReadyToRun"/>
+ <outfile xil_pn:name="CountdownController.twr"/>
+ <outfile xil_pn:name="CountdownController.twx"/>
+ <outfile xil_pn:name="_xmsgs/trce.xmsgs"/>
+ </transform>
</transforms>
</generated_project>
@@ -12,12 +12,12 @@ <!-- Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved. --> </header> - <version xil_pn:ise_version="13.4" xil_pn:schema_version="2"/> + <version xil_pn:ise_version="13.3" xil_pn:schema_version="2"/> <files> <file xil_pn:name="Bin2BCD.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="7"/> - <association xil_pn:name="Implementation" xil_pn:seqID="1"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="7"/> </file> <file xil_pn:name="TEST_Bin2BCD.v" xil_pn:type="FILE_VERILOG"> <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> @@ -26,8 +26,8 @@ <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="2"/> </file> <file xil_pn:name="Increment.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="2"/> - <association xil_pn:name="Implementation" xil_pn:seqID="15"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="2"/> </file> <file xil_pn:name="TEST_Increment.v" xil_pn:type="FILE_VERILOG"> <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> @@ -36,12 +36,12 @@ <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="16"/> </file> <file xil_pn:name="debouncer.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="4"/> - <association xil_pn:name="Implementation" xil_pn:seqID="21"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="4"/> </file> <file xil_pn:name="BCD2Bin.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="8"/> - <association xil_pn:name="Implementation" xil_pn:seqID="22"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="8"/> </file> <file xil_pn:name="TEST_BCD2Bin.v" xil_pn:type="FILE_VERILOG"> <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> @@ -50,18 +50,18 @@ <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="23"/> </file> <file xil_pn:name="Countdown.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="5"/> - <association xil_pn:name="Implementation" xil_pn:seqID="27"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="1"/> + <association xil_pn:name="Implementation" xil_pn:seqID="5"/> </file> <file xil_pn:name="TEST_Countdown.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="2"/> <association xil_pn:name="PostMapSimulation" xil_pn:seqID="28"/> <association xil_pn:name="PostRouteSimulation" xil_pn:seqID="28"/> <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="28"/> </file> <file xil_pn:name="ClockDivider.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="6"/> - <association xil_pn:name="Implementation" xil_pn:seqID="32"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="6"/> </file> <file xil_pn:name="TEST_ClockDivider.v" xil_pn:type="FILE_VERILOG"> <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> @@ -70,19 +70,19 @@ <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="33"/> </file> <file xil_pn:name="SevSegDisp.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="1"/> - <association xil_pn:name="Implementation" xil_pn:seqID="41"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="1"/> </file> <file xil_pn:name="DisplayController.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="3"/> - <association xil_pn:name="Implementation" xil_pn:seqID="42"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="3"/> </file> <file xil_pn:name="CountdownController.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="9"/> - <association xil_pn:name="Implementation" xil_pn:seqID="45"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> + <association xil_pn:name="Implementation" xil_pn:seqID="9"/> </file> <file xil_pn:name="Test_ContdownController.v" xil_pn:type="FILE_VERILOG"> - <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="10"/> + <association xil_pn:name="BehavioralSimulation" xil_pn:seqID="0"/> <association xil_pn:name="PostMapSimulation" xil_pn:seqID="33"/> <association xil_pn:name="PostRouteSimulation" xil_pn:seqID="33"/> <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="33"/> @@ -99,6 +99,9 @@ <association xil_pn:name="PostRouteSimulation" xil_pn:seqID="46"/> <association xil_pn:name="PostTranslateSimulation" xil_pn:seqID="46"/> </file> + <file xil_pn:name="CountdownController.ucf" xil_pn:type="FILE_UCF"> + <association xil_pn:name="Implementation" xil_pn:seqID="0"/> + </file> </files> <properties> @@ -126,7 +129,7 @@ <property xil_pn:name="Change Device Speed To" xil_pn:value="-3" xil_pn:valueState="default"/> <property xil_pn:name="Change Device Speed To Post Trace" xil_pn:value="-3" xil_pn:valueState="default"/> <property xil_pn:name="Combinatorial Logic Optimization" xil_pn:value="false" xil_pn:valueState="default"/> - <property xil_pn:name="Compile EDK Simulation Library" xil_pn:value="false" xil_pn:valueState="default"/> + <property xil_pn:name="Compile EDK Simulation Library" xil_pn:value="false" xil_pn:valueState="non-default"/> <property xil_pn:name="Compile SIMPRIM (Timing) Simulation Library" xil_pn:value="true" xil_pn:valueState="default"/> <property xil_pn:name="Compile UNISIM (Functional) Simulation Library" xil_pn:value="true" xil_pn:valueState="default"/> <property xil_pn:name="Compile XilinxCoreLib (CORE Generator) Simulation Library" xil_pn:value="true" xil_pn:valueState="default"/> @@ -144,9 +147,9 @@ <property xil_pn:name="Create Bit File" xil_pn:value="true" xil_pn:valueState="default"/> <property xil_pn:name="Create I/O Pads from Ports" xil_pn:value="false" xil_pn:valueState="default"/> <property xil_pn:name="Create IEEE 1532 Configuration File spartan6" xil_pn:value="false" xil_pn:valueState="default"/> - <property xil_pn:name="Create Logic Allocation File" xil_pn:value="false" xil_pn:valueState="default"/> - <property xil_pn:name="Create Mask File" xil_pn:value="false" xil_pn:valueState="default"/> - <property xil_pn:name="Create ReadBack Data Files" xil_pn:value="false" xil_pn:valueState="default"/> + <property xil_pn:name="Create Logic Allocation File" xil_pn:value="true" xil_pn:valueState="non-default"/> + <property xil_pn:name="Create Mask File" xil_pn:value="true" xil_pn:valueState="non-default"/> + <property xil_pn:name="Create ReadBack Data Files" xil_pn:value="true" xil_pn:valueState="non-default"/> <property xil_pn:name="Cross Clock Analysis" xil_pn:value="false" xil_pn:valueState="default"/> <property xil_pn:name="DSP Utilization Ratio" xil_pn:value="100" xil_pn:valueState="default"/> <property xil_pn:name="Delay Values To Be Read from SDF" xil_pn:value="Setup Time" xil_pn:valueState="default"/> @@ -180,7 +183,7 @@ <property xil_pn:name="Exclude Compilation of EDK Sub-Libraries" xil_pn:value="false" xil_pn:valueState="default"/> <property xil_pn:name="Extra Cost Tables Map" xil_pn:value="0" xil_pn:valueState="default"/> <property xil_pn:name="Extra Effort (Highest PAR level only)" xil_pn:value="None" xil_pn:valueState="default"/> - <property xil_pn:name="FPGA Start-Up Clock" xil_pn:value="CCLK" xil_pn:valueState="default"/> + <property xil_pn:name="FPGA Start-Up Clock" xil_pn:value="JTAG Clock" xil_pn:valueState="non-default"/> <property xil_pn:name="FSM Encoding Algorithm" xil_pn:value="Auto" xil_pn:valueState="default"/> <property xil_pn:name="FSM Style" xil_pn:value="LUT" xil_pn:valueState="default"/> <property xil_pn:name="Filter Files From Compile Order" xil_pn:value="true" xil_pn:valueState="default"/> @@ -248,7 +251,6 @@ <property xil_pn:name="Maximum Signal Name Length" xil_pn:value="20" xil_pn:valueState="default"/> <property xil_pn:name="Move First Flip-Flop Stage" xil_pn:value="true" xil_pn:valueState="default"/> <property xil_pn:name="Move Last Flip-Flop Stage" xil_pn:value="true" xil_pn:valueState="default"/> - <property xil_pn:name="MultiBoot: Insert IPROG CMD in the Bitfile spartan6" xil_pn:value="Enable" xil_pn:valueState="default"/> <property xil_pn:name="MultiBoot: Next Configuration Mode spartan6" xil_pn:value="001" xil_pn:valueState="default"/> <property xil_pn:name="MultiBoot: Starting Address for Golden Configuration spartan6" xil_pn:value="0x00000000" xil_pn:valueState="default"/> <property xil_pn:name="MultiBoot: Starting Address for Next Configuration spartan6" xil_pn:value="0x00000000" xil_pn:valueState="default"/> @@ -287,6 +289,7 @@ <property xil_pn:name="Package" xil_pn:value="csg324" xil_pn:valueState="default"/> <property xil_pn:name="Perform Advanced Analysis" xil_pn:value="false" xil_pn:valueState="default"/> <property xil_pn:name="Perform Advanced Analysis Post Trace" xil_pn:value="false" xil_pn:valueState="default"/> + <property xil_pn:name="Perform Timing-Driven Packing and Placement" xil_pn:value="false" xil_pn:valueState="default"/> <property xil_pn:name="Place & Route Effort Level (Overall)" xil_pn:value="High" xil_pn:valueState="default"/> <property xil_pn:name="Place And Route Mode" xil_pn:value="Normal Place and Route" xil_pn:valueState="default"/> <property xil_pn:name="Place MultiBoot Settings into Bitstream spartan6" xil_pn:value="false" xil_pn:valueState="default"/> @@ -341,8 +344,8 @@ <property xil_pn:name="Run for Specified Time Translate" xil_pn:value="true" xil_pn:valueState="default"/> <property xil_pn:name="Safe Implementation" xil_pn:value="No" xil_pn:valueState="default"/> <property xil_pn:name="Security" xil_pn:value="Enable Readback and Reconfiguration" xil_pn:valueState="default"/> - <property xil_pn:name="Selected Module Instance Name" xil_pn:value="/Test_ContdownController/uut/dbA" xil_pn:valueState="non-default"/> - <property xil_pn:name="Selected Simulation Root Source Node Behavioral" xil_pn:value="work.debouncer" xil_pn:valueState="non-default"/> + <property xil_pn:name="Selected Module Instance Name" xil_pn:value="/TEST_Increment" xil_pn:valueState="non-default"/> + <property xil_pn:name="Selected Simulation Root Source Node Behavioral" xil_pn:value="work.TEST_Increment" xil_pn:valueState="non-default"/> <property xil_pn:name="Selected Simulation Root Source Node Post-Map" xil_pn:value="" xil_pn:valueState="default"/> <property xil_pn:name="Selected Simulation Root Source Node Post-Route" xil_pn:value="" xil_pn:valueState="default"/> <property xil_pn:name="Selected Simulation Root Source Node Post-Translate" xil_pn:value="" xil_pn:valueState="default"/> @@ -360,7 +363,7 @@ <property xil_pn:name="Simulator" xil_pn:value="ISim (VHDL/Verilog)" xil_pn:valueState="default"/> <property xil_pn:name="Slice Utilization Ratio" xil_pn:value="100" xil_pn:valueState="default"/> <property xil_pn:name="Specify 'define Macro Name and Value" xil_pn:value="" xil_pn:valueState="default"/> - <property xil_pn:name="Specify Top Level Instance Names Behavioral" xil_pn:value="work.debouncer" xil_pn:valueState="default"/> + <property xil_pn:name="Specify Top Level Instance Names Behavioral" xil_pn:value="work.TEST_Increment" xil_pn:valueState="default"/> <property xil_pn:name="Specify Top Level Instance Names Post-Map" xil_pn:value="Default" xil_pn:valueState="default"/> <property xil_pn:name="Specify Top Level Instance Names Post-Route" xil_pn:value="Default" xil_pn:valueState="default"/> <property xil_pn:name="Specify Top Level Instance Names Post-Translate" xil_pn:value="Default" xil_pn:valueState="default"/> @@ -368,6 +371,7 @@ <property xil_pn:name="Starting Placer Cost Table (1-100) Map spartan6" xil_pn:value="1" xil_pn:valueState="default"/> <property xil_pn:name="Synthesis Tool" xil_pn:value="XST (VHDL/Verilog)" xil_pn:valueState="default"/> <property xil_pn:name="Target Simulator" xil_pn:value="Please Specify" xil_pn:valueState="default"/> + <property xil_pn:name="Target UCF File Name" xil_pn:value="CountdownController.ucf" xil_pn:valueState="non-default"/> <property xil_pn:name="Timing Mode Map" xil_pn:value="Performance Evaluation" xil_pn:valueState="default"/> <property xil_pn:name="Timing Mode Par" xil_pn:value="Performance Evaluation" xil_pn:valueState="default"/> <property xil_pn:name="Top-Level Module Name in Output Netlist" xil_pn:value="" xil_pn:valueState="default"/> @@ -410,7 +414,7 @@ <!-- --> <!-- The following properties are for internal use only. These should not be modified.--> <!-- --> - <property xil_pn:name="PROP_BehavioralSimTop" xil_pn:value="Module|Test_ContdownController" xil_pn:valueState="non-default"/> + <property xil_pn:name="PROP_BehavioralSimTop" xil_pn:value="Module|TEST_Countdown" xil_pn:valueState="non-default"/> <property xil_pn:name="PROP_DesignName" xil_pn:value="lab4" xil_pn:valueState="non-default"/> <property xil_pn:name="PROP_DevFamilyPMName" xil_pn:value="spartan6" xil_pn:valueState="default"/> <property xil_pn:name="PROP_FPGAConfiguration" xil_pn:value="FPGAConfiguration" xil_pn:valueState="default"/> diff --git a/xilinxsim.ini b/xilinxsim.ini index 600496d..a224b1f 100644 --- a/xilinxsim.ini +++ b/xilinxsim.ini @@ -1 +1 @@ -work=isim/work +work=isim/work
|