mirror of
https://github.com/alangarf/apple-one.git
synced 2025-01-09 16:33:57 +00:00
Initial commit
This commit is contained in:
parent
e2b390bbd6
commit
8aad887a5e
11
MUX.v
Normal file
11
MUX.v
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
module MUX #(
|
||||
parameter N=1
|
||||
) (
|
||||
output wire o,
|
||||
input wire i,
|
||||
input wire [N-1:0] s,
|
||||
input wire [N-1:0] d);
|
||||
|
||||
assign o = (|s) ? &(d|(~s)) : i;
|
||||
endmodule
|
88
apple1_sbt.project
Normal file
88
apple1_sbt.project
Normal file
@ -0,0 +1,88 @@
|
||||
[Project]
|
||||
ProjectVersion=2.0
|
||||
Version=Lattice Semiconductor Corporation iCEcube - Release: 2017.08.27940 - Build Date: Sep 11 2017 17:40:01
|
||||
ProjectName=apple1
|
||||
Vendor=SiliconBlue
|
||||
Synthesis=synplify
|
||||
ProjectVFiles=MUX.v=work,basic.v=work,chip_6502.v=work,clk_div.v=work,uart.v=work,flag.v=work,tm1638.v=work,led_and_key.v
|
||||
ProjectCFiles=
|
||||
CurImplementation=apple1_Implmnt
|
||||
Implementations=apple1_Implmnt
|
||||
StartFromSynthesis=yes
|
||||
IPGeneration=false
|
||||
|
||||
[apple1_Implmnt]
|
||||
DeviceFamily=iCE40
|
||||
Device=HX8K
|
||||
DevicePackage=CT256
|
||||
DevicePower=
|
||||
NetlistFile=apple1_Implmnt/apple1.edf
|
||||
AdditionalEDIFFile=
|
||||
IPEDIFFile=
|
||||
DesignLib=apple1_Implmnt/sbt/netlist/oadb-top
|
||||
DesignView=_rt
|
||||
DesignCell=top
|
||||
SynthesisSDCFile=apple1_Implmnt/apple1.scf
|
||||
UserPinConstraintFile=
|
||||
UserSDCFile=
|
||||
PhysicalConstraintFile=ice40hx8k.pcf
|
||||
BackendImplPathName=
|
||||
Devicevoltage=1.14
|
||||
DevicevoltagePerformance=+/-5%(datasheet default)
|
||||
DeviceTemperature=85
|
||||
TimingAnalysisBasedOn=Worst
|
||||
OperationRange=Commercial
|
||||
TypicalCustomTemperature=25
|
||||
WorstCustomTemperature=85
|
||||
BestCustomTemperature=0
|
||||
IOBankVoltages=topBank,3.3 bottomBank,3.3 leftBank,3.3 rightBank,3.3
|
||||
derValue=0.701346
|
||||
TimingPathNumberStick=0
|
||||
|
||||
[lse options]
|
||||
CarryChain=True
|
||||
CarryChainLength=0
|
||||
CommandLineOptions=
|
||||
EBRUtilization=100.00
|
||||
FSMEncodingStyle=Auto
|
||||
FixGatedClocks=True
|
||||
I/OInsertion=True
|
||||
IntermediateFileDump=False
|
||||
LoopLimit=1950
|
||||
MaximalFanout=10000
|
||||
MemoryInitialValueFileSearchPath=
|
||||
NumberOfCriticalPaths=3
|
||||
OptimizationGoal=Area
|
||||
PropagateConstants=True
|
||||
RAMStyle=Auto
|
||||
ROMStyle=Auto
|
||||
RWCheckOnRam=False
|
||||
RemoveDuplicateRegisters=True
|
||||
ResolvedMixedDrivers=False
|
||||
ResourceSharing=True
|
||||
TargetFrequency=
|
||||
TopLevelUnit=
|
||||
UseIORegister=Auto
|
||||
VHDL2008=False
|
||||
VerilogIncludeSearchPath=
|
||||
|
||||
[tool options]
|
||||
PlacerEffortLevel=std
|
||||
PlacerAutoLutCascade=yes
|
||||
PlacerAutoRamCascade=yes
|
||||
PlacerPowerDriven=no
|
||||
PlacerAreaDriven=no
|
||||
RouteWithTimingDriven=yes
|
||||
RouteWithPinPermutation=yes
|
||||
BitmapSPIFlashMode=yes
|
||||
BitmapRAM4KInit=yes
|
||||
BitmapInitRamBank=1111
|
||||
BitmapOscillatorFR=low
|
||||
BitmapEnableWarmBoot=yes
|
||||
BitmapDisableHeader=no
|
||||
BitmapSetSecurity=no
|
||||
BitmapSetNoUsedIONoPullup=no
|
||||
FloorPlannerShowFanInNets=yes
|
||||
FloorPlannerShowFanOutNets=yes
|
||||
HookTo3rdPartyTextEditor=no
|
||||
|
13
apple1_syn.prd
Normal file
13
apple1_syn.prd
Normal file
@ -0,0 +1,13 @@
|
||||
#-- Synopsys, Inc.
|
||||
#-- Version L-2016.09L+ice40
|
||||
#-- Project file C:\Users\Alan\Desktop\projects\apple1\apple1_syn.prd
|
||||
#-- Written on Mon Jan 01 01:15:55 2018
|
||||
|
||||
#
|
||||
### Watch Implementation type ###
|
||||
#
|
||||
watch_impl -all
|
||||
#
|
||||
### Watch Implementation properties ###
|
||||
#
|
||||
watch_prop -clear
|
78
apple1_syn.prj
Normal file
78
apple1_syn.prj
Normal file
@ -0,0 +1,78 @@
|
||||
#-- Synopsys, Inc.
|
||||
#-- Version L-2016.09L+ice40
|
||||
#-- Project file C:\Users\Alan\Desktop\projects\apple1\apple1_syn.prj
|
||||
#-- Written on Mon Jan 01 00:45:12 2018
|
||||
|
||||
|
||||
#project files
|
||||
|
||||
|
||||
|
||||
add_file -verilog -lib work "MUX.v"
|
||||
add_file -verilog -lib work "basic.v"
|
||||
add_file -verilog -lib work "chip_6502.v"
|
||||
add_file -verilog -lib work "clk_div.v"
|
||||
add_file -verilog -lib work "uart.v"
|
||||
add_file -verilog -lib work "flag.v"
|
||||
add_file -verilog -lib work "tm1638.v"
|
||||
add_file -verilog -lib work "led_and_key.v"
|
||||
#implementation: "apple1_Implmnt"
|
||||
impl -add apple1_Implmnt -type fpga
|
||||
|
||||
#
|
||||
#implementation attributes
|
||||
|
||||
set_option -vlog_std v2001
|
||||
set_option -project_relative_includes 1
|
||||
|
||||
#device options
|
||||
set_option -technology SBTiCE40
|
||||
set_option -part iCE40HX8K
|
||||
set_option -package CT256
|
||||
set_option -speed_grade
|
||||
set_option -part_companion ""
|
||||
|
||||
#compilation/mapping options
|
||||
set_option -top_module "top"
|
||||
|
||||
# hdl_compiler_options
|
||||
set_option -distributed_compile 0
|
||||
|
||||
# mapper_without_write_options
|
||||
set_option -frequency auto
|
||||
set_option -srs_instrumentation 1
|
||||
|
||||
# mapper_options
|
||||
set_option -write_verilog 0
|
||||
set_option -write_vhdl 0
|
||||
|
||||
# Lattice iCE40
|
||||
set_option -maxfan 10000
|
||||
set_option -rw_check_on_ram 0
|
||||
set_option -disable_io_insertion 0
|
||||
set_option -pipe 1
|
||||
set_option -retiming 0
|
||||
set_option -update_models_cp 0
|
||||
set_option -fix_gated_and_generated_clocks 1
|
||||
set_option -run_prop_extract 1
|
||||
|
||||
# NFilter
|
||||
set_option -no_sequential_opt 0
|
||||
|
||||
# sequential_optimization_options
|
||||
set_option -symbolic_fsm_compiler 1
|
||||
|
||||
# Compiler Options
|
||||
set_option -compiler_compatible 0
|
||||
set_option -resource_sharing 1
|
||||
|
||||
# Compiler Options
|
||||
set_option -auto_infer_blackbox 0
|
||||
|
||||
#automatic place and route (vendor) options
|
||||
set_option -write_apr_constraint 1
|
||||
|
||||
#set result format/file last
|
||||
project -result_file "apple1_Implmnt/apple1.edf"
|
||||
impl -active apple1_Implmnt
|
||||
project -run synthesis -clean
|
264
basic.v
Normal file
264
basic.v
Normal file
@ -0,0 +1,264 @@
|
||||
module top(
|
||||
input clk12,
|
||||
|
||||
input uart_rx,
|
||||
output uart_tx,
|
||||
output uart_cts,
|
||||
|
||||
output tm_cs,
|
||||
output tm_clk,
|
||||
inout tm_dio,
|
||||
|
||||
output reg [7:0] led
|
||||
);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// CLK DIVIDER
|
||||
|
||||
wire clk;
|
||||
clk_div u_clk_div(
|
||||
.clk (clk12),
|
||||
.clk_out (clk)
|
||||
);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// 6502 reset
|
||||
|
||||
reg [7:0] start;
|
||||
always @(posedge clk)
|
||||
if (~start[7]) start <= start + 1;
|
||||
|
||||
assign res = start[7];
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// 6502 phi0 clock
|
||||
|
||||
reg [3:0] div;
|
||||
always @(posedge clk)
|
||||
div <= div + 1;
|
||||
|
||||
assign phi0 = div[3];
|
||||
|
||||
wire clk_phi;
|
||||
SB_GB bg_phi (
|
||||
.USER_SIGNAL_TO_GLOBAL_BUFFER(phi0),
|
||||
.GLOBAL_BUFFER_OUTPUT(clk_phi)
|
||||
);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// 6502
|
||||
|
||||
wire rw, res, irq, nmi, phi0;
|
||||
wire [15:0] ab;
|
||||
wire [7:0] dbo;
|
||||
reg [7:0] dbi;
|
||||
|
||||
chip_6502 chip_6502 (
|
||||
.clk (clk),
|
||||
.phi (phi0),
|
||||
.res (res),
|
||||
.so (1'b0),
|
||||
.rdy (1'b1),
|
||||
.nmi (nmi),
|
||||
.irq (irq),
|
||||
.rw (rw),
|
||||
.dbi (dbi),
|
||||
.dbo (dbo),
|
||||
.sync (),
|
||||
.ab (ab)
|
||||
);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// USB UART
|
||||
|
||||
wire received, is_receiving, rx_error, is_transmitting, transmit;
|
||||
reg [7:0] tx_byte;
|
||||
wire [7:0] rx_byte;
|
||||
|
||||
uart #(.CLOCK_DIVIDE( 625 )) my_uart (
|
||||
clk12, // master clock for this component
|
||||
~res, // synchronous reset line (resets if high)
|
||||
uart_rx, // receive data on this line
|
||||
uart_tx, // transmit data on this line
|
||||
transmit, // signal to indicate that the UART should start a transmission
|
||||
tx_byte, // 8-bit bus with byte to be transmitted when transmit is raised high
|
||||
received, // output flag raised high for one cycle of clk when a byte is received
|
||||
rx_byte, // byte which has just been received when received is raise
|
||||
is_receiving, // indicates that we are currently receiving data on the rx lin
|
||||
is_transmitting, // indicates that we are currently sending data on the tx line
|
||||
rx_error // rx packet corrupt
|
||||
);
|
||||
|
||||
// sync the TX latch to the clk12 domain
|
||||
reg apple_tx;
|
||||
Flag_CrossDomain tx_flag (
|
||||
.clkA(clk_phi),
|
||||
.FlagIn_clkA(apple_tx),
|
||||
.clkB(clk12),
|
||||
.FlagOut_clkB(transmit)
|
||||
);
|
||||
|
||||
// sync the RX flag, using flag and ack
|
||||
reg [6:0] apple_rx_buf;
|
||||
reg apple_rx_ack;
|
||||
reg apple_rx_flag;
|
||||
|
||||
always @(posedge clk12)
|
||||
begin
|
||||
if (received && !apple_rx_flag && !apple_rx_ack) begin
|
||||
apple_rx_flag <= 1;
|
||||
apple_rx_buf <= rx_byte[6:0];
|
||||
end
|
||||
|
||||
if (apple_rx_flag && apple_rx_ack)
|
||||
apple_rx_flag <= 0;
|
||||
end
|
||||
|
||||
// implement basic hardware flow control so 6502 can catch up
|
||||
assign uart_cts = is_receiving || apple_rx_flag;
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// TM1638 Display
|
||||
|
||||
reg [3:0] display;
|
||||
reg [7:0] digits[7:0];
|
||||
reg [7:0] leds;
|
||||
wire [7:0] keys;
|
||||
|
||||
ledAndKey my_led_and_keys (
|
||||
.clk (clk12),
|
||||
.rst (~res),
|
||||
.display (display),
|
||||
.digit1 (digits[0]),
|
||||
.digit2 (digits[1]),
|
||||
.digit3 (digits[2]),
|
||||
.digit4 (digits[3]),
|
||||
.digit5 (digits[4]),
|
||||
.digit6 (digits[5]),
|
||||
.digit7 (digits[6]),
|
||||
.digit8 (digits[7]),
|
||||
.leds (leds),
|
||||
.keys (keys),
|
||||
.tm_cs (tm_cs),
|
||||
.tm_clk (tm_clk),
|
||||
.tm_dio (tm_dio)
|
||||
);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// I/O locations
|
||||
|
||||
localparam UART_RX = 16'hD010; // PIA.A register on Apple 1 - RX byte
|
||||
localparam UART_RXCR = 16'hD011; // PIA.A register on Apple 1 - RX control
|
||||
localparam UART_TX = 16'hD012; // PIA.B register on Apple 1 - TX byte
|
||||
localparam LED_KEYS = 16'hD020; // Start address of the Led&Keys module
|
||||
localparam LED = 16'hD000; // Breakout board LEDs
|
||||
|
||||
/*
|
||||
0x77 - A
|
||||
0X73 - P
|
||||
0X73 - P
|
||||
0X38 - L
|
||||
0X79 - E
|
||||
0X40 - -
|
||||
0X06 - 1
|
||||
*/
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// RAM and ROM
|
||||
|
||||
reg [7:0] ram[0:8191];
|
||||
initial begin
|
||||
$readmemh("../ram.hex", ram, 0, 8191);
|
||||
$readmemh("../rom.hex", ram, 8192-256, 8191);
|
||||
end
|
||||
|
||||
always @(posedge clk_phi)
|
||||
begin
|
||||
// clear the UART RX ack if set
|
||||
if (apple_rx_ack)
|
||||
apple_rx_ack <= 0;
|
||||
|
||||
// clear the UART TX latch if set
|
||||
if (apple_tx)
|
||||
apple_tx <= 0;
|
||||
|
||||
if (res)
|
||||
begin
|
||||
case(ab)
|
||||
// UART TX control and TX register
|
||||
UART_TX:
|
||||
begin
|
||||
if (rw)
|
||||
dbi <= {is_transmitting, 7'd0};
|
||||
else
|
||||
begin
|
||||
// Apple 1 terminal only uses 7 bits, MSB indicates
|
||||
// terminal has ack'd RX
|
||||
tx_byte <= {1'b0, dbo[6:0]};
|
||||
apple_tx <= 1;
|
||||
end
|
||||
end
|
||||
|
||||
// UART RX control register
|
||||
UART_RXCR:
|
||||
begin
|
||||
if (rw)
|
||||
dbi <= {apple_rx_flag, 7'b0};
|
||||
end
|
||||
|
||||
// UART RX register
|
||||
UART_RX:
|
||||
begin
|
||||
if (rw)
|
||||
begin
|
||||
// Apple 1 terminal only uses 7 bits, MSB tied high
|
||||
// Wozmon checks for MSB being high
|
||||
dbi <= apple_rx_flag ? {1'b1, apple_rx_buf} : 8'b0;
|
||||
apple_rx_ack <= 1;
|
||||
end
|
||||
end
|
||||
|
||||
// LED&KEYS registers
|
||||
LED_KEYS: if (rw) dbi <= {4'b0, display}; else display <= dbo[3:0];
|
||||
LED_KEYS + 1: if (rw) dbi <= digits[0]; else digits[0] <= dbo;
|
||||
LED_KEYS + 2: if (rw) dbi <= digits[1]; else digits[1] <= dbo;
|
||||
LED_KEYS + 3: if (rw) dbi <= digits[2]; else digits[2] <= dbo;
|
||||
LED_KEYS + 4: if (rw) dbi <= digits[3]; else digits[3] <= dbo;
|
||||
LED_KEYS + 5: if (rw) dbi <= digits[4]; else digits[4] <= dbo;
|
||||
LED_KEYS + 6: if (rw) dbi <= digits[5]; else digits[5] <= dbo;
|
||||
LED_KEYS + 7: if (rw) dbi <= digits[6]; else digits[6] <= dbo;
|
||||
LED_KEYS + 8: if (rw) dbi <= digits[7]; else digits[7] <= dbo;
|
||||
LED_KEYS + 9: if (rw) dbi <= leds; else leds <= dbo;
|
||||
LED_KEYS + 10: if (rw) dbi <= keys;
|
||||
|
||||
// breakout board LED registers
|
||||
LED: if (rw) dbi <= led; else led <= dbo;
|
||||
|
||||
default:
|
||||
begin
|
||||
// RAM 0x0000 -> 0x1FFF, ROM 0xFF00 -> 0xFFFF
|
||||
//
|
||||
// !!!! ROM also at 0x1F00 -> 0x1FFF but writeable!!!!
|
||||
//
|
||||
// All other addresses return zero.
|
||||
//
|
||||
if (ab[15:13] == 3'b0 || ab[15:8] == 8'b11111111)
|
||||
begin
|
||||
// handle RAM/ROM address
|
||||
dbi <= ram[ab[12:0]];
|
||||
if (~rw && ~ab[15]) ram[ab[12:0]] <= dbo;
|
||||
end
|
||||
else
|
||||
// unknown address return zero
|
||||
dbi <= 8'b0;
|
||||
end
|
||||
|
||||
endcase
|
||||
end
|
||||
end
|
||||
|
||||
// set irq and nmi high. for later use
|
||||
assign irq = 1;
|
||||
assign nmi = 1;
|
||||
|
||||
endmodule
|
66
chip_6502.v
Normal file
66
chip_6502.v
Normal file
@ -0,0 +1,66 @@
|
||||
`include "chip_6502_nodes.inc"
|
||||
|
||||
module LOGIC (
|
||||
input [`NUM_NODES-1:0] i,
|
||||
output [`NUM_NODES-1:0] o);
|
||||
|
||||
`include "logic.inc"
|
||||
endmodule
|
||||
|
||||
|
||||
module chip_6502 (
|
||||
input clk, // FPGA clock
|
||||
input phi, // 6502 clock
|
||||
input res,
|
||||
input so,
|
||||
input rdy,
|
||||
input nmi,
|
||||
input irq,
|
||||
input [7:0] dbi,
|
||||
output [7:0] dbo,
|
||||
output rw,
|
||||
output sync,
|
||||
output [15:0] ab);
|
||||
|
||||
// Node states
|
||||
wire [`NUM_NODES-1:0] no;
|
||||
reg [`NUM_NODES-1:0] ni;
|
||||
reg [`NUM_NODES-1:0] q = 0;
|
||||
|
||||
LOGIC logic_00 (.i(ni), .o(no));
|
||||
|
||||
always @ (posedge clk)
|
||||
q <= no;
|
||||
|
||||
always @* begin
|
||||
ni = q;
|
||||
|
||||
ni[`NODE_vcc ] = 1'b1;
|
||||
ni[`NODE_vss ] = 1'b0;
|
||||
ni[`NODE_res ] = res;
|
||||
ni[`NODE_clk0] = phi;
|
||||
ni[`NODE_so ] = so;
|
||||
ni[`NODE_rdy ] = rdy;
|
||||
ni[`NODE_nmi ] = nmi;
|
||||
ni[`NODE_irq ] = irq;
|
||||
|
||||
{ni[`NODE_db7],ni[`NODE_db6],ni[`NODE_db5],ni[`NODE_db4],
|
||||
ni[`NODE_db3],ni[`NODE_db2],ni[`NODE_db1],ni[`NODE_db0]} = dbi[7:0];
|
||||
end
|
||||
|
||||
assign dbo[7:0] = {
|
||||
no[`NODE_db7],no[`NODE_db6],no[`NODE_db5],no[`NODE_db4],
|
||||
no[`NODE_db3],no[`NODE_db2],no[`NODE_db1],no[`NODE_db0]
|
||||
};
|
||||
|
||||
assign ab[15:0] = {
|
||||
no[`NODE_ab15], no[`NODE_ab14], no[`NODE_ab13], no[`NODE_ab12],
|
||||
no[`NODE_ab11], no[`NODE_ab10], no[`NODE_ab9], no[`NODE_ab8],
|
||||
no[`NODE_ab7], no[`NODE_ab6], no[`NODE_ab5], no[`NODE_ab4],
|
||||
no[`NODE_ab3], no[`NODE_ab2], no[`NODE_ab1], no[`NODE_ab0]
|
||||
};
|
||||
|
||||
assign rw = no[`NODE_rw];
|
||||
assign sync = no[`NODE_sync];
|
||||
|
||||
endmodule
|
206
chip_6502_nodes.inc
Normal file
206
chip_6502_nodes.inc
Normal file
@ -0,0 +1,206 @@
|
||||
`define NUM_NODES 1725
|
||||
|
||||
`define NODE_vcc 657
|
||||
`define NODE_vss 558
|
||||
`define NODE_cp1 710
|
||||
`define NODE_cp2 943
|
||||
|
||||
`define NODE_res 159
|
||||
`define NODE_rw 1156
|
||||
`define NODE_db0 1005
|
||||
`define NODE_db1 82
|
||||
`define NODE_db3 650
|
||||
`define NODE_db2 945
|
||||
`define NODE_db5 175
|
||||
`define NODE_db4 1393
|
||||
`define NODE_db7 1349
|
||||
`define NODE_db6 1591
|
||||
`define NODE_ab0 268
|
||||
`define NODE_ab1 451
|
||||
`define NODE_ab2 1340
|
||||
`define NODE_ab3 211
|
||||
`define NODE_ab4 435
|
||||
`define NODE_ab5 736
|
||||
`define NODE_ab6 887
|
||||
`define NODE_ab7 1493
|
||||
`define NODE_ab8 230
|
||||
`define NODE_ab9 148
|
||||
`define NODE_ab12 1237
|
||||
`define NODE_ab13 349
|
||||
`define NODE_ab10 1443
|
||||
`define NODE_ab11 399
|
||||
`define NODE_ab14 672
|
||||
`define NODE_ab15 195
|
||||
`define NODE_sync 539
|
||||
`define NODE_so 1672
|
||||
`define NODE_clk0 1171
|
||||
`define NODE_clk1out 1163
|
||||
`define NODE_clk2out 421
|
||||
`define NODE_rdy 89
|
||||
`define NODE_nmi 1297
|
||||
`define NODE_irq 103
|
||||
|
||||
`define NODE_dpc11_SBADD 549
|
||||
`define NODE_dpc9_DBADD 859
|
||||
|
||||
`define NODE_a0 737
|
||||
`define NODE_a1 1234
|
||||
`define NODE_a2 978
|
||||
`define NODE_a3 162
|
||||
`define NODE_a4 727
|
||||
`define NODE_a5 858
|
||||
`define NODE_a6 1136
|
||||
`define NODE_a7 1653
|
||||
|
||||
`define NODE_y0 64
|
||||
`define NODE_y1 1148
|
||||
`define NODE_y2 573
|
||||
`define NODE_y3 305
|
||||
`define NODE_y4 989
|
||||
`define NODE_y5 615
|
||||
`define NODE_y6 115
|
||||
`define NODE_y7 843
|
||||
|
||||
`define NODE_x0 1216
|
||||
`define NODE_x1 98
|
||||
`define NODE_x2 1
|
||||
`define NODE_x3 1648
|
||||
`define NODE_x4 85
|
||||
`define NODE_x5 589
|
||||
`define NODE_x6 448
|
||||
`define NODE_x7 777
|
||||
|
||||
`define NODE_pcl0 1139
|
||||
`define NODE_pcl1 1022
|
||||
`define NODE_pcl2 655
|
||||
`define NODE_pcl3 1359
|
||||
`define NODE_pcl4 900
|
||||
`define NODE_pcl5 622
|
||||
`define NODE_pcl6 377
|
||||
`define NODE_pcl7 1611
|
||||
`define NODE_pch0 1670
|
||||
`define NODE_pch1 292
|
||||
`define NODE_pch2 502
|
||||
`define NODE_pch3 584
|
||||
`define NODE_pch4 948
|
||||
`define NODE_pch5 49
|
||||
`define NODE_pch6 1551
|
||||
`define NODE_pch7 205
|
||||
|
||||
`define NODE_Reset0 67
|
||||
`define NODE_C1x5Reset 926
|
||||
|
||||
`define NODE_idl0 1597 // datapath signal internal data latch (driven output)
|
||||
`define NODE_idl1 870
|
||||
`define NODE_idl2 1066
|
||||
`define NODE_idl3 464
|
||||
`define NODE_idl4 1306
|
||||
`define NODE_idl5 240
|
||||
`define NODE_idl6 1116
|
||||
`define NODE_idl7 391
|
||||
|
||||
`define NODE_sb0 54 // datapath bus special bus
|
||||
`define NODE_sb1 1150
|
||||
`define NODE_sb2 1287
|
||||
`define NODE_sb3 1188
|
||||
`define NODE_sb4 1405
|
||||
`define NODE_sb5 166
|
||||
`define NODE_sb6 1336
|
||||
`define NODE_sb7 1001
|
||||
|
||||
`define NODE_adl0 413 // internal bus address low
|
||||
`define NODE_adl1 1282
|
||||
`define NODE_adl2 1242
|
||||
`define NODE_adl3 684
|
||||
`define NODE_adl4 1437
|
||||
`define NODE_adl5 1630
|
||||
`define NODE_adl6 121
|
||||
`define NODE_adl7 1299
|
||||
|
||||
`define NODE_adh0 407 // internal bus address high
|
||||
`define NODE_adh1 52
|
||||
`define NODE_adh2 1651
|
||||
`define NODE_adh3 315
|
||||
`define NODE_adh4 1160
|
||||
`define NODE_adh5 483
|
||||
`define NODE_adh6 13
|
||||
`define NODE_adh7 1539
|
||||
|
||||
`define NODE_idb0 1108 // internal bus data bus
|
||||
`define NODE_idb1 991
|
||||
`define NODE_idb2 1473
|
||||
`define NODE_idb3 1302
|
||||
`define NODE_idb4 892
|
||||
`define NODE_idb5 1503
|
||||
`define NODE_idb6 833
|
||||
`define NODE_idb7 493
|
||||
|
||||
`define NODE_abl0 1096 // internal bus address bus low latched data out (inverse of inverted storage node)
|
||||
`define NODE_abl1 376
|
||||
`define NODE_abl2 1502
|
||||
`define NODE_abl3 1250
|
||||
`define NODE_abl4 1232
|
||||
`define NODE_abl5 234
|
||||
`define NODE_abl6 178
|
||||
`define NODE_abl7 567
|
||||
|
||||
`define NODE_abh0 1429 // internal bus address bus high latched data out (inverse of inverted storage node)
|
||||
`define NODE_abh1 713
|
||||
`define NODE_abh2 287
|
||||
`define NODE_abh3 422
|
||||
`define NODE_abh4 1143
|
||||
`define NODE_abh5 775
|
||||
`define NODE_abh6 997
|
||||
`define NODE_abh7 489
|
||||
|
||||
`define NODE_s0 1403 // machine state stack pointer
|
||||
`define NODE_s1 183
|
||||
`define NODE_s2 81
|
||||
`define NODE_s3 1532
|
||||
`define NODE_s4 1702
|
||||
`define NODE_s5 1098
|
||||
`define NODE_s6 1212
|
||||
`define NODE_s7 1435
|
||||
|
||||
`define NODE_ir0 328 // internal state instruction register
|
||||
`define NODE_ir1 1626
|
||||
`define NODE_ir2 1384
|
||||
`define NODE_ir3 1576
|
||||
`define NODE_ir4 1112
|
||||
`define NODE_ir5 1329 // ir5 distinguishes branch set from branch clear
|
||||
`define NODE_ir6 337
|
||||
`define NODE_ir7 1328
|
||||
|
||||
`define NODE_clock1 1536 // internal state timing control aka #T0
|
||||
`define NODE_clock2 156 // internal state timing control aka #T+
|
||||
`define NODE_t2 971 // internal state timing control
|
||||
`define NODE_t3 1567
|
||||
`define NODE_t4 690
|
||||
`define NODE_t5 909
|
||||
|
||||
`define NODE_alu0 401
|
||||
`define NODE_alu1 872
|
||||
`define NODE_alu2 1637
|
||||
`define NODE_alu3 1414
|
||||
`define NODE_alu4 606
|
||||
`define NODE_alu5 314
|
||||
`define NODE_alu6 331
|
||||
`define NODE_alu7 765
|
||||
|
||||
`define NODE_alua0 1167
|
||||
`define NODE_alua1 1248
|
||||
`define NODE_alua2 1332
|
||||
`define NODE_alua3 1680
|
||||
`define NODE_alua4 1142
|
||||
`define NODE_alua5 530
|
||||
`define NODE_alua6 1627
|
||||
`define NODE_alua7 1522
|
||||
|
||||
`define NODE_alub0 977
|
||||
`define NODE_alub1 1432
|
||||
`define NODE_alub2 704
|
||||
`define NODE_alub3 96
|
||||
`define NODE_alub4 1645
|
||||
`define NODE_alub5 1678
|
||||
`define NODE_alub6 235
|
||||
`define NODE_alub7 1535
|
32
clk_div.v
Normal file
32
clk_div.v
Normal file
@ -0,0 +1,32 @@
|
||||
module clk_div
|
||||
#(
|
||||
//parameter WIDTH = 16,
|
||||
//parameter N = 65535 // divide by 12
|
||||
parameter WIDTH = 4,
|
||||
parameter N = 1 // divide by 12
|
||||
)
|
||||
(
|
||||
input clk,
|
||||
output clk_out
|
||||
);
|
||||
|
||||
reg [WIDTH-1:0] r_reg;
|
||||
wire [WIDTH-1:0] r_nxt;
|
||||
reg clk_track;
|
||||
|
||||
always @(posedge clk)
|
||||
begin
|
||||
if (r_nxt == N)
|
||||
begin
|
||||
r_reg <= 0;
|
||||
clk_track <= ~clk_track;
|
||||
end
|
||||
|
||||
else
|
||||
r_reg <= r_nxt;
|
||||
end
|
||||
|
||||
assign r_nxt = r_reg + 1;
|
||||
assign clk_out = clk_track;
|
||||
|
||||
endmodule
|
15
flag.v
Normal file
15
flag.v
Normal file
@ -0,0 +1,15 @@
|
||||
module Flag_CrossDomain(
|
||||
input clkA,
|
||||
input FlagIn_clkA, // this is a one-clock pulse from the clkA domain
|
||||
input clkB,
|
||||
output FlagOut_clkB // from which we generate a one-clock pulse in clkB domain
|
||||
);
|
||||
|
||||
reg FlagToggle_clkA;
|
||||
always @(posedge clkA) FlagToggle_clkA <= FlagToggle_clkA ^ FlagIn_clkA; // when flag is asserted, this signal toggles (clkA domain)
|
||||
|
||||
reg [2:0] SyncA_clkB;
|
||||
always @(posedge clkB) SyncA_clkB <= {SyncA_clkB[1:0], FlagToggle_clkA}; // now we cross the clock domains
|
||||
|
||||
assign FlagOut_clkB = (SyncA_clkB[2] ^ SyncA_clkB[1]); // and create the clkB flag
|
||||
endmodule
|
48
ice40hx8k.pcf
Normal file
48
ice40hx8k.pcf
Normal file
@ -0,0 +1,48 @@
|
||||
# For the iCE40HX-8K Breakout Board
|
||||
|
||||
## System Clock
|
||||
set_io clk12 J3
|
||||
|
||||
### UART (FTDI Channel B)
|
||||
set_io uart_rx B10
|
||||
set_io uart_tx B12
|
||||
set_io uart_cts A15
|
||||
set_io uart_rts B13
|
||||
|
||||
### TM1638 Display
|
||||
set_io tm_clk P1
|
||||
set_io tm_dio P2
|
||||
set_io tm_cs R1
|
||||
|
||||
### LEDs
|
||||
set_io led[7] B5
|
||||
set_io led[6] B4
|
||||
set_io led[5] A2
|
||||
set_io led[4] A1
|
||||
set_io led[3] C5
|
||||
set_io led[2] C4
|
||||
set_io led[1] B3
|
||||
set_io led[0] C3
|
||||
|
||||
set_io ledx[7] J1
|
||||
set_io ledx[6] J2
|
||||
set_io ledx[5] K1
|
||||
set_io ledx[4] K3
|
||||
set_io ledx[3] L1
|
||||
set_io ledx[2] L3
|
||||
set_io ledx[1] M1
|
||||
set_io ledx[0] M2
|
||||
|
||||
#set_io d[0] B1
|
||||
#set_io d[1] B2
|
||||
#set_io d[2] C1
|
||||
#set_io d[3] C2
|
||||
#set_io d[4] D1
|
||||
#set_io d[5] D2
|
||||
#set_io d[6] E2
|
||||
#set_io d[7] F1
|
||||
#set_io d[8] F2
|
||||
#set_io d[9] G1
|
||||
#set_io d[10] G2
|
||||
#set_io d[11] H1
|
||||
#set_io d[12] H2
|
164
led_and_key.v
Normal file
164
led_and_key.v
Normal file
@ -0,0 +1,164 @@
|
||||
module ledAndKey(
|
||||
input clk,
|
||||
input rst,
|
||||
|
||||
input [3:0] display,
|
||||
input [7:0] digit1,
|
||||
input [7:0] digit2,
|
||||
input [7:0] digit3,
|
||||
input [7:0] digit4,
|
||||
input [7:0] digit5,
|
||||
input [7:0] digit6,
|
||||
input [7:0] digit7,
|
||||
input [7:0] digit8,
|
||||
input [7:0] leds,
|
||||
|
||||
output reg [7:0] keys,
|
||||
|
||||
output reg tm_cs,
|
||||
output tm_clk,
|
||||
inout tm_dio
|
||||
);
|
||||
|
||||
localparam
|
||||
HIGH = 1'b1,
|
||||
LOW = 1'b0;
|
||||
|
||||
localparam [7:0]
|
||||
C_READ = 8'b01000010,
|
||||
C_WRITE = 8'b01000000,
|
||||
C_DISP = 8'b10001111,
|
||||
C_ADDR = 8'b11000000;
|
||||
|
||||
reg counter;
|
||||
reg [5:0] instruction_step;
|
||||
|
||||
// set up tristate IO pin for display
|
||||
// tm_dio is physical pin
|
||||
// dio_in for reading from display
|
||||
// dio_out for sending to display
|
||||
// tm_rw selects input or output
|
||||
reg tm_rw;
|
||||
wire dio_in, dio_out;
|
||||
SB_IO #(
|
||||
.PIN_TYPE(6'b101001),
|
||||
.PULLUP(1'b1)
|
||||
) tm_dio_io (
|
||||
.PACKAGE_PIN(tm_dio),
|
||||
.OUTPUT_ENABLE(tm_rw),
|
||||
.D_IN_0(dio_in),
|
||||
.D_OUT_0(dio_out)
|
||||
);
|
||||
|
||||
// setup tm1638 module with it's tristate IO
|
||||
// tm_in is read from module
|
||||
// tm_out is written to module
|
||||
// tm_latch triggers the module to read/write display
|
||||
// tm_rw selects read or write mode to display
|
||||
// busy indicates when module is busy
|
||||
// (another latch will interrupt)
|
||||
// tm_clk is the data clk
|
||||
// dio_in for reading from display
|
||||
// dio_out for sending to display
|
||||
//
|
||||
// tm_data the tristate io pin to module
|
||||
reg tm_latch;
|
||||
wire busy;
|
||||
wire [7:0] tm_data, tm_in;
|
||||
reg [7:0] tm_out;
|
||||
|
||||
assign tm_in = tm_data;
|
||||
assign tm_data = tm_rw ? tm_out : 8'hZZ;
|
||||
|
||||
tm1638 u_tm1638 (
|
||||
.clk(clk),
|
||||
.rst(rst),
|
||||
.data_latch(tm_latch),
|
||||
.data(tm_data),
|
||||
.rw(tm_rw),
|
||||
.busy(busy),
|
||||
.sclk(tm_clk),
|
||||
.dio_in(dio_in),
|
||||
.dio_out(dio_out)
|
||||
);
|
||||
|
||||
always @(posedge clk) begin
|
||||
if (rst) begin
|
||||
instruction_step <= 6'b0;
|
||||
tm_cs <= HIGH;
|
||||
tm_rw <= HIGH;
|
||||
|
||||
counter <= 1'b0;
|
||||
keys <= 8'b0;
|
||||
|
||||
end else begin
|
||||
if (counter && ~busy) begin
|
||||
case (instruction_step)
|
||||
// *** KEYS ***
|
||||
1: {tm_cs, tm_rw} <= {LOW, HIGH};
|
||||
2: {tm_latch, tm_out} <= {HIGH, C_READ}; // read mode
|
||||
3: {tm_latch, tm_rw} <= {HIGH, LOW};
|
||||
|
||||
// read back keys S1 - S8
|
||||
4: {keys[7], keys[3]} <= {tm_in[0], tm_in[4]};
|
||||
5: {tm_latch} <= {HIGH};
|
||||
6: {keys[6], keys[2]} <= {tm_in[0], tm_in[4]};
|
||||
7: {tm_latch} <= {HIGH};
|
||||
8: {keys[5], keys[1]} <= {tm_in[0], tm_in[4]};
|
||||
9: {tm_latch} <= {HIGH};
|
||||
10: {keys[4], keys[0]} <= {tm_in[0], tm_in[4]};
|
||||
11: {tm_cs} <= {HIGH};
|
||||
|
||||
// *** DISPLAY ***
|
||||
12: {tm_cs, tm_rw} <= {LOW, HIGH};
|
||||
13: {tm_latch, tm_out} <= {HIGH, C_WRITE}; // write mode
|
||||
14: {tm_cs} <= {HIGH};
|
||||
|
||||
15: {tm_cs, tm_rw} <= {LOW, HIGH};
|
||||
16: {tm_latch, tm_out} <= {HIGH, C_ADDR}; // set addr 0 pos
|
||||
|
||||
17: {tm_latch, tm_out} <= {HIGH, digit1}; // Digit 1
|
||||
18: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[7]}}; // LED 1
|
||||
|
||||
19: {tm_latch, tm_out} <= {HIGH, digit2}; // Digit 2
|
||||
20: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[6]}}; // LED 2
|
||||
|
||||
21: {tm_latch, tm_out} <= {HIGH, digit3}; // Digit 3
|
||||
22: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[5]}}; // LED 3
|
||||
|
||||
23: {tm_latch, tm_out} <= {HIGH, digit4}; // Digit 4
|
||||
24: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[4]}}; // LED 4
|
||||
|
||||
25: {tm_latch, tm_out} <= {HIGH, digit5}; // Digit 5
|
||||
26: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[3]}}; // LED 5
|
||||
|
||||
27: {tm_latch, tm_out} <= {HIGH, digit6}; // Digit 6
|
||||
28: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[2]}}; // LED 6
|
||||
|
||||
29: {tm_latch, tm_out} <= {HIGH, digit7}; // Digit 7
|
||||
30: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[1]}}; // LED 7
|
||||
|
||||
31: {tm_latch, tm_out} <= {HIGH, digit8}; // Digit 8
|
||||
32: {tm_latch, tm_out} <= {HIGH, {7'b0, leds[0]}}; // LED 8
|
||||
|
||||
33: {tm_cs} <= {HIGH};
|
||||
|
||||
34: {tm_cs, tm_rw} <= {LOW, HIGH};
|
||||
35: {tm_latch, tm_out} <= {HIGH, {4'b1000, display}}; // display
|
||||
36: {tm_cs, instruction_step} <= {HIGH, 6'b0};
|
||||
|
||||
endcase
|
||||
|
||||
instruction_step <= instruction_step + 1;
|
||||
|
||||
end else if (busy) begin
|
||||
// pull latch low next clock cycle after module has been
|
||||
// latched
|
||||
tm_latch <= LOW;
|
||||
end
|
||||
|
||||
counter <= ~counter;
|
||||
end
|
||||
end
|
||||
endmodule
|
||||
|
872
logic.inc
Normal file
872
logic.inc
Normal file
@ -0,0 +1,872 @@
|
||||
assign o[674] = i[192]|i[256];
|
||||
assign o[928] = i[1077]|i[829];
|
||||
assign o[522] = i[197]|i[403];
|
||||
assign o[1117] = i[1134]|i[717];
|
||||
assign o[876] = i[276]|i[697];
|
||||
assign o[1448] = ~i[636]|i[660];
|
||||
assign o[996] = ~i[310]|~i[119];
|
||||
assign o[1018] = i[893]|i[68];
|
||||
assign o[1688] = i[787]|i[673];
|
||||
assign o[1309] = i[1077]|i[1669];
|
||||
assign o[1228] = i[303]|i[1504];
|
||||
assign o[125] = i[1410]|i[809]|i[540];
|
||||
assign o[1081] = i[1055]|i[1337]|i[1355];
|
||||
assign o[925] = ~i[1675]|i[541]|~i[1609];
|
||||
assign o[544] = i[1609]|i[1675]|~i[541]|i[119];
|
||||
assign o[630] = i[0]|i[1210]|i[461]|i[677];
|
||||
assign o[664] = i[1620]|~i[310]|i[1050]|~i[1300];
|
||||
assign o[837] = i[310]|i[1675]|i[1536]|~i[541]|~i[1609];
|
||||
assign o[636] = ~i[1620]|~i[1575]|~i[1300]|i[927]|i[996];
|
||||
assign o[218] = i[309]|i[528]|i[932]|i[1589]|i[446]|i[1430];
|
||||
assign o[847] = i[1382]|i[712]|~i[1107]|i[1259]|i[857]|i[342];
|
||||
assign o[980] = i[1620]|i[1675]|~i[927]|~i[541]|i[1300]|~i[678]|i[996];
|
||||
assign o[1065] = i[1620]|i[1675]|i[1536]|~i[1300]|~i[541]|i[927]|i[996];
|
||||
assign o[889] = i[1620]|~i[1675]|i[1536]|~i[1300]|~i[541]|i[927]|i[996];
|
||||
assign o[1379] = i[1609]|~i[1675]|i[1536]|~i[927]|~i[541]|i[1300]|i[996];
|
||||
assign o[774] = i[1620]|i[1675]|i[1536]|~i[1300]|i[541]|i[927]|i[996];
|
||||
assign o[340] = i[1620]|i[1609]|~i[1675]|~i[1300]|i[541]|i[927]|i[996];
|
||||
assign o[1268] = i[1503]|i[493]|i[1473]|i[1108]|i[991]|i[1302]|i[892]|i[833];
|
||||
assign o[1586] = i[1620]|i[1609]|~i[1675]|i[1536]|~i[1300]|i[541]|i[119]|i[927];
|
||||
assign o[1219] = ~i[1620]|i[1609]|~i[378]|~i[1675]|~i[927]|~i[1300]|~i[541]|i[996];
|
||||
assign o[979] = ~i[24]&i[546];
|
||||
assign o[19] = ~(~i[660]|~i[559]);
|
||||
assign o[36] = ~(~i[1341]|i[393]);
|
||||
assign o[46] = ~(i[197]|~i[595]);
|
||||
assign o[53] = ~(i[1675]|i[119]);
|
||||
assign o[65] = ~(~i[1425]|i[308]);
|
||||
assign o[80] = ~(i[1130]|i[267]);
|
||||
assign o[160] = ~(i[781]|~i[366]);
|
||||
assign o[169] = ~(i[1624]|i[366]);
|
||||
assign o[174] = ~(~i[427]|i[1459]);
|
||||
assign o[176] = ~(i[10]|i[660]);
|
||||
assign o[180] = ~(i[197]|i[1716]);
|
||||
assign o[188] = ~(i[1606]|~i[223]);
|
||||
assign o[193] = ~(~i[1122]|i[701]);
|
||||
assign o[200] = ~(~i[292]|i[919]);
|
||||
assign o[204] = ~(~i[1620]|~i[1575]);
|
||||
assign o[251] = ~(i[1035]|~i[1579]);
|
||||
assign o[260] = ~(i[1205]|~i[1001]);
|
||||
assign o[261] = ~(i[447]|i[461]);
|
||||
assign o[264] = ~(i[1312]|i[1149]);
|
||||
assign o[269] = ~(i[1241]|~i[336]);
|
||||
assign o[275] = ~(i[773]|~i[664]);
|
||||
assign o[295] = ~(i[425]|~i[1285]);
|
||||
assign o[327] = ~(i[1226]|i[1569]);
|
||||
assign o[334] = ~(i[1382]|i[1553]);
|
||||
assign o[335] = ~(i[347]|i[925]);
|
||||
assign o[378] = ~(~i[223]|i[18]);
|
||||
assign o[385] = ~(i[604]|~i[857]);
|
||||
assign o[410] = ~(i[1184]|~i[900]);
|
||||
assign o[412] = ~(i[164]|i[560]);
|
||||
assign o[425] = ~(i[155]|~i[841]);
|
||||
assign o[467] = ~(i[134]|i[17]);
|
||||
assign o[479] = ~(i[739]|~i[1336]);
|
||||
assign o[506] = ~(i[192]|i[660]);
|
||||
assign o[516] = ~(i[1691]|~i[681]);
|
||||
assign o[540] = ~(i[1077]|i[369]);
|
||||
assign o[550] = ~(i[384]|i[1228]);
|
||||
assign o[553] = ~(i[781]|~i[1124]);
|
||||
assign o[555] = ~(i[1525]|~i[590]);
|
||||
assign o[595] = ~(i[354]|i[1168]);
|
||||
assign o[637] = ~(i[1318]|i[1314]);
|
||||
assign o[640] = ~(i[649]|~i[350]);
|
||||
assign o[678] = ~(~i[223]|i[644]);
|
||||
assign o[717] = ~(i[1132]|i[1036]);
|
||||
assign o[720] = ~(i[197]|i[56]);
|
||||
assign o[735] = ~(~i[1150]|i[36]);
|
||||
assign o[743] = ~(i[523]|~i[49]);
|
||||
assign o[753] = ~(i[1257]|i[811]);
|
||||
assign o[773] = ~(~i[17]|i[273]);
|
||||
assign o[781] = ~(i[197]|i[199]);
|
||||
assign o[790] = ~(i[53]|i[691]);
|
||||
assign o[809] = ~(i[1077]|i[361]);
|
||||
assign o[810] = ~(~i[584]|i[293]);
|
||||
assign o[811] = ~(~i[412]|~i[581]);
|
||||
assign o[812] = ~(~i[17]|~i[24]);
|
||||
assign o[813] = ~(i[653]|~i[24]);
|
||||
assign o[817] = ~(i[1220]|~i[142]);
|
||||
assign o[819] = ~(i[449]|i[596]);
|
||||
assign o[824] = ~(i[487]|i[579]);
|
||||
assign o[827] = ~(~i[717]|i[1350]);
|
||||
assign o[860] = ~(~i[1023]|i[640]);
|
||||
assign o[877] = ~(i[506]|i[933]);
|
||||
assign o[879] = ~(i[197]|~i[1011]);
|
||||
assign o[882] = ~(i[597]|i[1252]);
|
||||
assign o[917] = ~(i[197]|~i[712]);
|
||||
assign o[930] = ~(i[134]|i[1276]);
|
||||
assign o[944] = ~(i[89]|i[759]);
|
||||
assign o[959] = ~(i[430]|i[294]);
|
||||
assign o[964] = ~(i[554]|i[1533]);
|
||||
assign o[1044] = ~(~i[32]|i[812]);
|
||||
assign o[1055] = ~(~i[660]|i[756]);
|
||||
assign o[1069] = ~(~i[94]|i[1274]);
|
||||
assign o[1087] = ~(i[1382]|i[717]);
|
||||
assign o[1090] = ~(~i[1225]|i[157]);
|
||||
assign o[1097] = ~(i[345]|~i[1188]);
|
||||
assign o[1109] = ~(i[1464]|i[902]);
|
||||
assign o[1115] = ~(i[1609]|i[620]);
|
||||
assign o[1134] = ~(i[1465]|~i[698]);
|
||||
assign o[1154] = ~(i[197]|i[959]);
|
||||
assign o[1159] = ~(i[613]|~i[1287]);
|
||||
assign o[1170] = ~(i[781]|~i[443]);
|
||||
assign o[1179] = ~(~i[1425]|~i[599]);
|
||||
assign o[1180] = ~(i[197]|i[554]);
|
||||
assign o[1213] = ~(~i[205]|i[609]);
|
||||
assign o[1217] = ~(i[1241]|~i[1314]);
|
||||
assign o[1220] = ~(i[1632]|~i[477]);
|
||||
assign o[1225] = ~(i[285]|i[1524]);
|
||||
assign o[1241] = ~(~i[1318]|i[1398]);
|
||||
assign o[1253] = ~(~i[655]|i[1542]);
|
||||
assign o[1257] = ~(i[412]|~i[1565]);
|
||||
assign o[1286] = ~(i[17]|i[930]);
|
||||
assign o[1312] = ~(i[1693]|i[1291]);
|
||||
assign o[1316] = ~(i[344]|~i[377]);
|
||||
assign o[1342] = ~(i[310]|i[1536]);
|
||||
assign o[1343] = ~(i[197]|i[152]);
|
||||
assign o[1345] = ~(i[379]|~i[1139]);
|
||||
assign o[1350] = ~(i[1382]|i[760]);
|
||||
assign o[1374] = ~(i[562]|i[882]);
|
||||
assign o[1380] = ~(i[819]|i[1154]);
|
||||
assign o[1382] = ~(i[197]|~i[1452]);
|
||||
assign o[1391] = ~(i[352]|i[750]);
|
||||
assign o[1410] = ~(i[1077]|i[1690]);
|
||||
assign o[1457] = ~(i[781]|~i[974]);
|
||||
assign o[1465] = ~(i[197]|~i[370]);
|
||||
assign o[1517] = ~(~i[1176]|i[559]);
|
||||
assign o[1575] = ~(~i[223]|i[1360]);
|
||||
assign o[1587] = ~(i[1077]|i[894]);
|
||||
assign o[1610] = ~(i[640]|~i[681]);
|
||||
assign o[1619] = ~(i[1448]|i[182]);
|
||||
assign o[1622] = ~(i[1077]|i[758]);
|
||||
assign o[1629] = ~(~i[166]|i[753]);
|
||||
assign o[1671] = ~(i[1077]|i[955]);
|
||||
assign o[1705] = ~(i[467]|i[630]);
|
||||
assign o[10] = ~(i[467]|i[1721]|i[1211]);
|
||||
assign o[14] = ~(~i[1395]|i[323]|i[671]);
|
||||
assign o[58] = ~(i[927]|i[1620]|~i[678]);
|
||||
assign o[134] = ~(i[1557]|i[259]|i[1052]);
|
||||
assign o[187] = ~(i[197]|~i[717]|i[1131]);
|
||||
assign o[191] = ~(i[347]|i[197]|i[790]);
|
||||
assign o[258] = ~(i[1300]|~i[1575]|i[927]);
|
||||
assign o[267] = ~(i[544]|i[785]|~i[1447]);
|
||||
assign o[273] = ~(~i[1575]|i[1620]|i[791]);
|
||||
assign o[279] = ~(~i[1104]|~i[338]|~i[1049]);
|
||||
assign o[281] = ~(i[927]|i[1620]|~i[188]);
|
||||
assign o[285] = ~(~i[1575]|~i[1620]|i[1300]);
|
||||
assign o[307] = ~(i[541]|~i[32]|~i[1675]);
|
||||
assign o[354] = ~(i[927]|i[1620]|~i[188]);
|
||||
assign o[447] = ~(i[927]|i[1620]|~i[678]);
|
||||
assign o[501] = ~(i[819]|~i[1395]|i[180]);
|
||||
assign o[510] = ~(i[347]|i[1052]|~i[790]);
|
||||
assign o[513] = ~(i[1646]|~i[338]|~i[384]);
|
||||
assign o[546] = ~(~i[1675]|~i[541]|i[119]);
|
||||
assign o[616] = ~(i[1482]|i[286]|i[665]);
|
||||
assign o[677] = ~(i[791]|i[1620]|~i[678]);
|
||||
assign o[691] = ~(~i[1675]|~i[541]|i[119]);
|
||||
assign o[844] = ~(i[786]|i[985]|i[1664]);
|
||||
assign o[1019] = ~(i[1622]|~i[1587]|i[1671]);
|
||||
assign o[1215] = ~(i[1382]|i[1185]|~i[1713]);
|
||||
assign o[1243] = ~(~i[541]|i[310]|~i[1533]);
|
||||
assign o[1246] = ~(~i[541]|i[1675]|i[119]);
|
||||
assign o[1275] = ~(i[832]|i[197]|i[1019]);
|
||||
assign o[1293] = ~(i[541]|i[1675]|~i[627]);
|
||||
assign o[1358] = ~(i[917]|i[1109]|i[245]);
|
||||
assign o[1368] = ~(i[1374]|~i[1431]|~i[1032]);
|
||||
assign o[1371] = ~(~i[69]|~i[541]|~i[1675]);
|
||||
assign o[1433] = ~(~i[541]|i[1675]|~i[1625]);
|
||||
assign o[1562] = ~(~i[1675]|i[541]|i[119]);
|
||||
assign o[1614] = ~(i[1177]|i[1111]|i[1436]);
|
||||
assign o[1712] = ~(i[1134]|i[264]|~i[717]);
|
||||
assign o[145] = ~(~i[1675]|i[541]|i[310]|~i[1609]);
|
||||
assign o[152] = ~(~i[272]|i[630]|~i[1219]|i[1575]);
|
||||
assign o[219] = ~(~i[1575]|~i[927]|~i[1620]|i[1300]);
|
||||
assign o[302] = ~(~i[1622]|~i[1587]|i[1671]|i[540]);
|
||||
assign o[324] = ~(i[1675]|i[541]|i[1609]|i[119]);
|
||||
assign o[384] = ~(i[946]|i[1228]|i[653]|~i[1455]);
|
||||
assign o[388] = ~(i[425]|i[623]|i[516]|~i[841]);
|
||||
assign o[570] = ~(~i[477]|i[1220]|i[142]|~i[1459]);
|
||||
assign o[575] = ~(i[310]|i[1675]|i[1609]|i[1536]);
|
||||
assign o[607] = ~(~i[927]|i[1300]|i[1620]|~i[678]);
|
||||
assign o[620] = ~(i[307]|i[1433]|i[1371]|i[1293]);
|
||||
assign o[822] = ~(i[310]|i[1675]|i[1609]|~i[1533]);
|
||||
assign o[904] = ~(i[1300]|i[927]|~i[1620]|~i[678]);
|
||||
assign o[1031] = ~(~i[927]|~i[541]|~i[678]|i[996]);
|
||||
assign o[1057] = ~(~i[1575]|~i[927]|i[1620]|i[1300]);
|
||||
assign o[1155] = ~(i[310]|i[1675]|i[1609]|~i[1533]);
|
||||
assign o[1178] = ~(i[960]|i[614]|i[848]|i[1652]);
|
||||
assign o[1185] = ~(i[729]|i[916]|i[197]|i[1137]);
|
||||
assign o[1196] = ~(i[522]|i[1228]|~i[837]|~i[366]);
|
||||
assign o[1385] = ~(~i[1620]|i[310]|~i[378]|~i[1300]);
|
||||
assign o[1466] = ~(~i[1675]|~i[541]|i[1609]|i[119]);
|
||||
assign o[1524] = ~(~i[1575]|i[310]|~i[1620]|~i[1300]);
|
||||
assign o[1540] = ~(~i[1675]|i[541]|i[119]|~i[1609]);
|
||||
assign o[1716] = ~(i[510]|i[653]|i[218]|i[660]);
|
||||
assign o[60] = ~(i[310]|~i[1620]|i[927]|~i[1300]|~i[678]);
|
||||
assign o[84] = ~(i[310]|~i[1575]|~i[927]|~i[1620]|~i[1300]);
|
||||
assign o[104] = ~(~i[636]|~i[24]|i[1589]|i[275]|i[847]);
|
||||
assign o[157] = ~(~i[927]|~i[1575]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[301] = ~(~i[1533]|i[310]|i[541]|i[1675]|~i[1609]);
|
||||
assign o[342] = ~(i[310]|~i[1620]|i[927]|~i[1300]|~i[678]);
|
||||
assign o[347] = ~(i[281]|i[219]|i[1385]|i[607]|i[904]);
|
||||
assign o[403] = ~(i[1536]|~i[1675]|~i[541]|i[310]|~i[1609]);
|
||||
assign o[461] = ~(i[310]|~i[1620]|i[927]|~i[1300]|~i[188]);
|
||||
assign o[492] = ~(i[310]|~i[1620]|i[927]|~i[1300]|~i[188]);
|
||||
assign o[660] = ~(i[927]|~i[1620]|~i[678]|~i[1300]|i[996]);
|
||||
assign o[787] = ~(i[310]|i[1675]|i[1536]|i[1609]|i[541]);
|
||||
assign o[791] = ~(~i[927]|i[1620]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[985] = ~(i[1536]|~i[1675]|i[541]|i[1609]|i[119]);
|
||||
assign o[1050] = ~(~i[927]|i[1620]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[1130] = ~(~i[1219]|i[192]|i[1109]|i[653]|~i[666]);
|
||||
assign o[1168] = ~(i[310]|~i[1620]|~i[378]|~i[1300]|i[927]);
|
||||
assign o[1204] = ~(~i[1575]|~i[1620]|i[310]|~i[1300]|i[927]);
|
||||
assign o[1210] = ~(i[310]|~i[1620]|~i[927]|~i[378]|~i[1300]);
|
||||
assign o[1211] = ~(~i[636]|i[273]|~i[666]|~i[1219]|i[1286]);
|
||||
assign o[1259] = ~(i[310]|~i[1620]|~i[927]|~i[1300]|~i[188]);
|
||||
assign o[1294] = ~(i[1587]|i[1622]|i[1671]|~i[1410]|i[540]);
|
||||
assign o[1334] = ~(~i[292]|~i[1670]|~i[1704]|~i[584]|~i[502]);
|
||||
assign o[1337] = ~(i[1536]|~i[927]|i[541]|i[1675]|i[996]);
|
||||
assign o[1355] = ~(i[1536]|i[310]|i[541]|i[1675]|~i[1609]);
|
||||
assign o[1420] = ~(~i[1675]|i[310]|i[1536]|i[1609]|i[541]);
|
||||
assign o[1428] = ~(i[310]|~i[1620]|~i[927]|~i[1300]|~i[678]);
|
||||
assign o[1504] = ~(~i[1675]|i[310]|i[1536]|i[1609]|~i[541]);
|
||||
assign o[1512] = ~(~i[1575]|i[1620]|i[310]|~i[1300]|i[927]);
|
||||
assign o[1582] = ~(~i[927]|~i[1575]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[1601] = ~(~i[1675]|i[1300]|i[541]|~i[1609]|i[996]);
|
||||
assign o[272] = ~(~i[17]|i[273]|~i[636]|i[660]|i[0]|~i[666]);
|
||||
assign o[286] = ~(~i[1675]|i[1536]|~i[927]|i[541]|i[1609]|i[996]);
|
||||
assign o[665] = ~(~i[1675]|i[1536]|i[1300]|i[541]|i[1609]|i[996]);
|
||||
assign o[764] = ~(~i[927]|~i[541]|i[1675]|i[1300]|i[1620]|i[996]);
|
||||
assign o[857] = ~(i[1675]|~i[927]|~i[1620]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[1052] = ~(~i[927]|~i[541]|i[1675]|i[1300]|i[1620]|i[996]);
|
||||
assign o[1233] = ~(i[1536]|~i[927]|i[1675]|i[541]|~i[1609]|i[996]);
|
||||
assign o[1324] = ~(~i[927]|~i[541]|i[1620]|~i[1533]|~i[1300]|i[119]);
|
||||
assign o[1347] = ~(~i[636]|i[1396]|i[979]|i[550]|~i[666]|i[782]);
|
||||
assign o[1352] = ~(i[653]|~i[24]|i[335]|i[352]|i[1642]|i[932]);
|
||||
assign o[1396] = ~(i[1536]|~i[927]|i[1620]|~i[541]|~i[1300]|i[119]);
|
||||
assign o[1464] = ~(i[370]|i[784]|i[271]|i[552]|i[1612]|i[1487]);
|
||||
assign o[1520] = ~(i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[1557] = ~(~i[927]|~i[541]|~i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[1658] = ~(i[1536]|~i[927]|i[1675]|i[541]|i[1609]|i[996]);
|
||||
assign o[1710] = ~(~i[927]|~i[1533]|i[1675]|i[541]|~i[1620]|i[996]);
|
||||
assign o[1721] = ~(i[1536]|i[927]|~i[1620]|~i[47]|~i[1300]|i[996]);
|
||||
assign o[256] = ~(i[784]|i[0]|i[1478]|i[594]|i[188]|i[1210]|i[678]);
|
||||
assign o[259] = ~(~i[1675]|~i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[303] = ~(i[1536]|~i[1675]|~i[927]|~i[541]|i[1300]|i[1609]|i[996]);
|
||||
assign o[382] = ~(i[1536]|~i[927]|i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[446] = ~(i[1675]|~i[1620]|~i[927]|~i[378]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[552] = ~(i[1536]|~i[927]|~i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[594] = ~(i[1536]|~i[927]|~i[541]|i[1675]|i[1300]|i[1620]|i[996]);
|
||||
assign o[804] = ~(~i[1675]|~i[927]|~i[541]|~i[1620]|~i[188]|~i[1300]|i[996]);
|
||||
assign o[932] = ~(~i[927]|~i[1575]|~i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[950] = ~(~i[927]|~i[1533]|i[1300]|i[1675]|i[541]|i[1620]|i[996]);
|
||||
assign o[1074] = ~(i[1536]|i[1675]|~i[927]|i[1620]|~i[541]|~i[1300]|i[119]);
|
||||
assign o[1430] = ~(~i[927]|i[1620]|~i[541]|i[1609]|~i[678]|~i[1300]|i[996]);
|
||||
assign o[1455] = ~(i[1420]|i[179]|i[131]|i[1324]|i[1243]|i[257]|i[822]);
|
||||
assign o[1478] = ~(i[1536]|~i[927]|~i[541]|~i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[1482] = ~(~i[927]|~i[1533]|i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[1487] = ~(~i[927]|i[1620]|~i[541]|i[1609]|~i[678]|~i[1300]|i[996]);
|
||||
assign o[1589] = ~(~i[927]|~i[541]|i[1300]|i[1675]|~i[188]|i[1620]|i[996]);
|
||||
assign o[1646] = ~(~i[1675]|~i[927]|~i[541]|~i[1533]|i[1300]|i[1609]|i[996]);
|
||||
assign o[1665] = ~(~i[1675]|~i[927]|~i[541]|i[1620]|~i[1533]|~i[1300]|i[119]);
|
||||
assign o[0] = ~(~i[1620]|i[1675]|~i[378]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[4] = ~(~i[1675]|i[1536]|i[1620]|~i[927]|i[1609]|i[541]|~i[1300]|i[996]);
|
||||
assign o[76] = ~(i[1536]|~i[927]|i[1675]|i[541]|i[1620]|i[119]|~i[1300]|~i[1609]);
|
||||
assign o[131] = ~(i[1675]|i[1536]|i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[167] = ~(~i[1675]|i[1536]|i[1620]|~i[927]|i[1609]|i[541]|~i[1300]|i[119]);
|
||||
assign o[179] = ~(~i[1675]|i[1536]|~i[927]|i[541]|i[1620]|i[119]|~i[1300]|~i[1609]);
|
||||
assign o[245] = ~(~i[1675]|i[1536]|i[541]|i[119]|i[1620]|i[927]|~i[1300]|~i[1609]);
|
||||
assign o[257] = ~(~i[1675]|i[1536]|i[541]|i[927]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[271] = ~(~i[1675]|i[1536]|~i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[309] = ~(~i[1575]|~i[927]|i[1675]|~i[541]|i[1620]|i[1300]|~i[1609]|i[996]);
|
||||
assign o[352] = ~(~i[1675]|~i[927]|~i[1620]|~i[541]|~i[1609]|~i[188]|~i[1300]|i[996]);
|
||||
assign o[370] = ~(~i[1675]|~i[927]|~i[1620]|~i[541]|~i[378]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[487] = ~(~i[1675]|~i[927]|~i[1575]|~i[541]|~i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[528] = ~(~i[1620]|~i[1675]|~i[378]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[579] = ~(~i[1675]|~i[927]|~i[1620]|~i[541]|i[1609]|~i[678]|~i[1300]|i[996]);
|
||||
assign o[712] = ~(~i[1575]|~i[1675]|~i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[750] = ~(~i[1675]|~i[927]|~i[1575]|~i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[784] = ~(i[1675]|~i[927]|~i[1620]|~i[541]|~i[378]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[786] = ~(~i[927]|~i[1533]|i[1675]|i[541]|i[1620]|i[119]|~i[1300]|~i[1609]);
|
||||
assign o[1086] = ~(~i[1575]|~i[927]|i[1675]|~i[541]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[1173] = ~(~i[1675]|i[1536]|i[541]|i[927]|i[1620]|~i[1609]|~i[1300]|i[996]);
|
||||
assign o[1226] = ~(~i[1675]|i[1536]|i[1620]|~i[927]|i[1609]|~i[541]|~i[1300]|i[996]);
|
||||
assign o[1311] = ~(~i[927]|i[1675]|~i[1620]|~i[541]|~i[1609]|~i[188]|~i[1300]|i[996]);
|
||||
assign o[1543] = ~(~i[1675]|i[1536]|~i[927]|i[541]|i[1620]|i[119]|~i[1300]|~i[1609]);
|
||||
assign o[1569] = ~(i[1675]|~i[927]|~i[1620]|~i[541]|~i[1609]|~i[188]|~i[1300]|i[996]);
|
||||
assign o[1612] = ~(i[1675]|~i[927]|~i[1620]|~i[541]|i[1609]|~i[188]|~i[1300]|i[996]);
|
||||
assign o[1664] = ~(i[1675]|~i[927]|i[1620]|~i[1533]|i[1609]|i[541]|~i[1300]|i[996]);
|
||||
assign o[1649] = ~(i[764]|i[197]|i[1109]|i[1382]|i[1057]|~i[1107]|i[1259]|i[712]|i[857]);
|
||||
assign o[1704] = ~(~i[655]|i[379]|~i[1611]|~i[1359]|~i[377]|~i[622]|~i[1139]|~i[1022]|~i[900]);
|
||||
assign o[919] = ~(i[1704]&i[1670]);
|
||||
assign o[1137] = ~(i[790]&i[925]);
|
||||
assign o[1386] = ~(i[1316]&i[1611]);
|
||||
assign o[1101] = ~(i[813]&i[46]);
|
||||
assign o[1077] = ~(i[879]&i[827]);
|
||||
assign o[757] = ~(i[142]&~i[477]);
|
||||
assign o[1594] = ~(i[779]&i[604]);
|
||||
assign o[523] = ~(i[948]&i[1334]);
|
||||
assign o[473] = ~(i[980]&i[1408]);
|
||||
assign o[1642] = ~(i[824]&~i[1338]);
|
||||
assign o[29] = ~(i[787]&i[348]);
|
||||
assign o[293] = ~(i[200]&i[502]);
|
||||
assign o[986] = ~(i[276]&i[697]);
|
||||
assign o[782] = ~(i[1303]&~i[712]);
|
||||
assign o[673] = ~(i[575]&i[348]);
|
||||
assign o[504] = ~(~i[24]&~i[197]);
|
||||
assign o[319] = ~(i[623]&~i[841]);
|
||||
assign o[701] = ~(~i[1691]&i[681]);
|
||||
assign o[1525] = ~(~i[143]&i[1628]);
|
||||
assign o[308] = ~(i[1063]&~i[404]);
|
||||
assign o[946] = ~(i[844]&i[616]);
|
||||
assign o[1184] = ~(i[1253]&i[1359]);
|
||||
assign o[933] = ~(~i[1679]&~i[1176]);
|
||||
assign o[233] = ~(i[893]&i[68]);
|
||||
assign o[192] = ~(~i[1721]&i[595]);
|
||||
assign o[609] = ~(i[743]&i[1551]);
|
||||
assign o[1459] = ~(i[336]&~i[1084]);
|
||||
assign o[695] = ~(~i[1425]&i[1450]);
|
||||
assign o[1542] = ~(i[1345]&i[1022]);
|
||||
assign o[344] = ~(i[410]&i[622]);
|
||||
assign o[1111] = ~(i[215]&i[199]);
|
||||
assign o[651] = ~(~i[1425]&i[308]|i[65]);
|
||||
assign o[274] = ~(~i[1023]&i[640]|i[860]);
|
||||
assign o[515] = ~(i[1542]&~i[655]|i[1253]);
|
||||
assign o[1209] = ~(i[609]&~i[205]|i[1213]);
|
||||
assign o[1500] = ~(i[379]&~i[1139]|i[1345]);
|
||||
assign o[263] = ~(i[753]&~i[166]|i[1629]);
|
||||
assign o[371] = ~(~i[590]&i[1525]|i[555]);
|
||||
assign o[486] = ~(~i[142]&i[1220]|i[817]);
|
||||
assign o[1314] = ~(i[427]&i[336]|i[1084]);
|
||||
assign o[366] = ~(~i[24]&i[1246]|i[1074]);
|
||||
assign o[1285] = ~(i[1628]&i[590]|i[143]);
|
||||
assign o[754] = ~(i[443]&i[199]|i[1673]);
|
||||
assign o[207] = ~(i[293]&~i[584]|i[810]);
|
||||
assign o[916] = ~(i[412]&i[559]|i[1517]);
|
||||
assign o[22] = ~(~i[1122]&i[701]|i[193]);
|
||||
assign o[427] = ~(i[142]&~i[1632]|~i[477]);
|
||||
assign o[1486] = ~(i[919]&~i[292]|i[200]);
|
||||
assign o[586] = ~(i[1544]&~i[636]|i[1619]);
|
||||
assign o[142] = ~(i[1425]&i[1063]|i[404]);
|
||||
assign o[532] = ~(~i[1314]&i[1241]|i[1217]);
|
||||
assign o[1475] = ~(i[345]&~i[1188]|i[1097]);
|
||||
assign o[1308] = ~(i[1314]&i[1398]|i[637]);
|
||||
assign o[965] = ~(~i[1285]&i[425]|i[295]);
|
||||
assign o[1039] = ~(i[197]&i[151]|i[456]);
|
||||
assign o[1327] = ~(i[1314]&~i[1398]|~i[1318]);
|
||||
assign o[1023] = ~(i[681]&i[1122]|i[1691]);
|
||||
assign o[732] = ~(i[792]&i[1528]|i[1161]);
|
||||
assign o[1009] = ~(i[36]&~i[1150]|i[735]);
|
||||
assign o[1494] = ~(i[1205]&~i[1001]|i[260]);
|
||||
assign o[450] = ~(i[613]&~i[1287]|i[1159]);
|
||||
assign o[623] = ~(i[1628]&i[590]|i[143]);
|
||||
assign o[20] = ~(i[344]&~i[377]|i[1316]);
|
||||
assign o[1544] = ~(i[1609]&i[620]|i[1115]);
|
||||
assign o[1290] = ~(i[197]&~i[698]|i[1126]);
|
||||
assign o[875] = ~(i[523]&~i[49]|i[743]);
|
||||
assign o[1197] = ~(~i[427]&i[1459]|i[174]);
|
||||
assign o[632] = ~(~i[902]&i[271]|i[1582]);
|
||||
assign o[1122] = ~(i[1285]&~i[155]|~i[841]);
|
||||
assign o[679] = ~(i[739]&~i[1336]|i[479]);
|
||||
assign o[1037] = ~(i[145]&i[335]|i[1086]);
|
||||
assign o[474] = ~(i[1184]&~i[900]|i[410]);
|
||||
assign o[1425] = ~(i[1023]&~i[649]|i[1372]|~i[350]);
|
||||
assign o[851] = ~(i[1019]&i[125]|i[1294]|i[302]);
|
||||
assign o[182] = ~(i[660]&~i[1679]|i[0]|~i[17]|~i[1211]);
|
||||
assign o[11] = ~(~i[1420]&i[1342]|i[4]|i[167]|i[1396]|i[1228]);
|
||||
assign o[1107] = ~(i[324]&~i[24]|i[1520]|i[1428]|i[1204]|i[492]|i[58]);
|
||||
assign o[252] = ~(i[691]&i[653]|i[1710]|i[1665]|i[1155]|i[950]|i[301]);
|
||||
assign o[604] = ~(i[1536]&i[204]|i[197]|i[1582]|i[804]|i[1311]|i[1031]|i[1428]);
|
||||
assign o[472] = ~(~i[197]&i[706]|i[197]&i[1373]);
|
||||
assign o[428] = ~(~i[197]&i[40]|i[197]&i[706]);
|
||||
assign o[613] = ~(~i[697]&i[393]|~i[1341]&i[697]);
|
||||
assign o[262] = ~(~i[1008]&i[685]|~i[1321]&i[1008]);
|
||||
assign o[468] = ~(~i[197]&i[1373]|i[197]&i[940]);
|
||||
assign o[1091] = ~(~i[197]&i[537]|i[197]&i[40]);
|
||||
assign o[626] = ~(~i[493]&i[1269]|~i[1269]&i[1530]);
|
||||
assign o[345] = ~(i[986]&~i[1341]|i[393]&i[876]);
|
||||
assign o[1181] = ~(i[754]&~i[493]|~i[754]&i[1442]);
|
||||
assign o[739] = ~(~i[893]&i[811]|i[893]&i[1257]);
|
||||
assign o[1205] = ~(i[811]&i[1018]|i[233]&i[1257]);
|
||||
assign o[1106] = ~(i[258]&~i[1562]|i[335]&i[1540]|i[76]|i[1543]|i[1658]|i[245]|i[84]);
|
||||
assign o[1717] = ~(i[258]&i[1562]|i[335]&i[1601]|i[1173]|i[1233]|i[60]|i[382]|i[1512]);
|
||||
assign o[1495] = ~(~i[1302]&i[781]|i[1457]&i[99]|i[1609]&~i[974]);
|
||||
assign o[566] = ~(i[1170]&i[1607]|~i[991]&i[781]|~i[443]&i[1268]);
|
||||
assign o[845] = ~(~i[1473]&i[781]|~i[1124]&i[1609]|i[553]&i[1078]);
|
||||
assign o[299] = ~(i[408]&i[1436]|i[1614]&i[44]|~i[833]&i[1111]|~i[1283]);
|
||||
assign o[1082] = ~(~i[1049]&~i[1108]|i[412]&~i[338]|i[1051]&i[279]|i[1609]&~i[1104]);
|
||||
wire sb_local_1287 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_1473 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_1651 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1287 = idb_local_1473 & ~i[1527];
|
||||
wire sb2db_1473 = sb_local_1287 & ~i[1527];
|
||||
wire adh2sb_1287 = adh_local_1651 & ~i[1602];
|
||||
wire sb2adh_1651 = sb_local_1287 & ~i[1602];
|
||||
MUX #(8) mux_sb_1287 (.o(o[1287]), .i(i[1287]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_1287,adh2sb_1287}), .d({i[657],i[573],i[1],~i[752],~i[276],i[978],i[1473],i[1651]}));
|
||||
MUX #(7) mux_idb_1473 (.o(o[1473]), .i(i[1473]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_1473,~i[1577]}), .d({i[657],i[978],~i[114],i[1411],~i[1485],i[1287],~i[334]}));
|
||||
MUX #(6) mux_adl_1242 (.o(o[1242]), .i(i[1242]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[45]}), .d({i[657],~i[752],~i[276],i[1411],~i[1485],i[558]}));
|
||||
MUX #(5) mux_adh_1651 (.o(o[1651]), .i(i[1651]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_1651}), .d({i[657],i[558],~i[114],~i[1485],i[1287]}));
|
||||
MUX #(2) mux_pcl_655 (.o(o[655]), .i(i[655]), .s({i[898],i[414]}), .d({i[1411],i[1242]}));
|
||||
MUX #(2) mux_pch_502 (.o(o[502]), .i(i[502]), .s({i[48],i[741]}), .d({i[1651],~i[114]}));
|
||||
wire sb_local_54 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_1108 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_407 = ~i[683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_54 = idb_local_1108 & ~i[1527];
|
||||
wire sb2db_1108 = sb_local_54 & ~i[1527];
|
||||
wire adh2sb_54 = adh_local_407 & ~i[1602];
|
||||
wire sb2adh_407 = sb_local_54 & ~i[1602];
|
||||
MUX #(8) mux_sb_54 (.o(o[54]), .i(i[54]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_54,adh2sb_54}), .d({i[657],i[64],i[1216],~i[418],~i[394],i[737],i[1108],i[407]}));
|
||||
MUX #(7) mux_idb_1108 (.o(o[1108]), .i(i[1108]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_1108,~i[1577]}), .d({i[657],i[737],~i[780],i[526],~i[116],i[54],i[32]}));
|
||||
MUX #(6) mux_adl_413 (.o(o[413]), .i(i[413]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],~i[357]}), .d({i[657],~i[418],~i[394],i[526],~i[116],i[558]}));
|
||||
MUX #(5) mux_adh_407 (.o(o[407]), .i(i[407]), .s({i[943],~i[683],~i[598],i[710]&~i[1020], sb2adh_407}), .d({i[657],i[558],~i[780],~i[116],i[54]}));
|
||||
MUX #(2) mux_pcl_1139 (.o(o[1139]), .i(i[1139]), .s({i[898],i[414]}), .d({i[526],i[413]}));
|
||||
MUX #(2) mux_pch_1670 (.o(o[1670]), .i(i[1670]), .s({i[48],i[741]}), .d({i[407],~i[780]}));
|
||||
wire sb_local_1150 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_991 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_52 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1150 = idb_local_991 & ~i[1527];
|
||||
wire sb2db_991 = sb_local_1150 & ~i[1527];
|
||||
wire adh2sb_1150 = adh_local_52 & ~i[1602];
|
||||
wire sb2adh_52 = sb_local_1150 & ~i[1602];
|
||||
MUX #(8) mux_sb_1150 (.o(o[1150]), .i(i[1150]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_1150,adh2sb_1150}), .d({i[657],i[1148],i[98],~i[1064],~i[697],i[1234],i[991],i[52]}));
|
||||
MUX #(7) mux_idb_991 (.o(o[991]), .i(i[991]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_991,~i[1577]}), .d({i[657],i[1234],i[126],~i[1102],~i[576],i[1150],i[627]}));
|
||||
MUX #(6) mux_adl_1282 (.o(o[1282]), .i(i[1282]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],~i[170]}), .d({i[657],~i[1064],~i[697],~i[1102],~i[576],i[558]}));
|
||||
MUX #(5) mux_adh_52 (.o(o[52]), .i(i[52]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_52}), .d({i[657],i[558],i[126],~i[576],i[1150]}));
|
||||
MUX #(2) mux_pcl_1022 (.o(o[1022]), .i(i[1022]), .s({i[898],i[414]}), .d({~i[1102],i[1282]}));
|
||||
MUX #(2) mux_pch_292 (.o(o[292]), .i(i[292]), .s({i[48],i[741]}), .d({i[52],i[126]}));
|
||||
wire sb_local_1188 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_1302 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_315 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1188 = idb_local_1302 & ~i[1527];
|
||||
wire sb2db_1302 = sb_local_1188 & ~i[1527];
|
||||
wire adh2sb_1188 = adh_local_315 & ~i[1602];
|
||||
wire sb2adh_315 = sb_local_1188 & ~i[1602];
|
||||
MUX #(8) mux_sb_1188 (.o(o[1188]), .i(i[1188]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_1188,adh2sb_1188}), .d({i[657],i[305],i[1648],~i[828],~i[495],i[162],i[1302],i[315]}));
|
||||
MUX #(7) mux_idb_1302 (.o(o[1302]), .i(i[1302]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_1302,~i[1577]}), .d({i[657],i[162],i[1061],~i[868],~i[1284],i[1188],i[348]}));
|
||||
MUX #(6) mux_adl_684 (.o(o[684]), .i(i[684]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[558]}), .d({i[657],~i[828],~i[495],~i[868],~i[1284],i[558]}));
|
||||
MUX #(5) mux_adh_315 (.o(o[315]), .i(i[315]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_315}), .d({i[657],i[558],i[1061],~i[1284],i[1188]}));
|
||||
MUX #(2) mux_pcl_1359 (.o(o[1359]), .i(i[1359]), .s({i[898],i[414]}), .d({~i[868],i[684]}));
|
||||
MUX #(2) mux_pch_584 (.o(o[584]), .i(i[584]), .s({i[48],i[741]}), .d({i[315],i[1061]}));
|
||||
wire sb_local_1405 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_892 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_1160 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1405 = idb_local_892 & ~i[1527];
|
||||
wire sb2db_892 = sb_local_1405 & ~i[1527];
|
||||
wire adh2sb_1405 = adh_local_1160 & ~i[1602];
|
||||
wire sb2adh_1160 = sb_local_1405 & ~i[1602];
|
||||
MUX #(8) mux_sb_1405 (.o(o[1405]), .i(i[1405]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_1405,adh2sb_1405}), .d({i[657],i[989],i[85],~i[1603],~i[1490],i[727],i[892],i[1160]}));
|
||||
MUX #(7) mux_idb_892 (.o(o[892]), .i(i[892]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_892,~i[1577]}), .d({i[657],i[727],~i[820],i[15],~i[1516],i[1405],i[827]}));
|
||||
MUX #(6) mux_adl_1437 (.o(o[1437]), .i(i[1437]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[558]}), .d({i[657],~i[1603],~i[1490],i[15],~i[1516],i[558]}));
|
||||
MUX #(5) mux_adh_1160 (.o(o[1160]), .i(i[1160]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_1160}), .d({i[657],i[558],~i[820],~i[1516],i[1405]}));
|
||||
MUX #(2) mux_pcl_900 (.o(o[900]), .i(i[900]), .s({i[898],i[414]}), .d({i[15],i[1437]}));
|
||||
MUX #(2) mux_pch_948 (.o(o[948]), .i(i[948]), .s({i[48],i[741]}), .d({i[1160],~i[820]}));
|
||||
wire sb_local_166 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_1503 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|i[558];
|
||||
wire adh_local_483 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_166 = idb_local_1503 & ~i[1527];
|
||||
wire sb2db_1503 = sb_local_166 & ~i[1527];
|
||||
wire adh2sb_166 = adh_local_483 & ~i[1602];
|
||||
wire sb2adh_483 = sb_local_166 & ~i[1602];
|
||||
MUX #(8) mux_sb_166 (.o(o[166]), .i(i[166]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_166,adh2sb_166}), .d({i[657],i[615],i[589],~i[601],~i[893],i[858],i[1503],i[483]}));
|
||||
MUX #(7) mux_idb_1503 (.o(o[1503]), .i(i[1503]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_1503,i[558]}), .d({i[657],i[858],i[469],~i[1326],~i[498],i[166],i[558]}));
|
||||
MUX #(6) mux_adl_1630 (.o(o[1630]), .i(i[1630]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[558]}), .d({i[657],~i[601],~i[893],~i[1326],~i[498],i[558]}));
|
||||
MUX #(5) mux_adh_483 (.o(o[483]), .i(i[483]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_483}), .d({i[657],i[558],i[469],~i[498],i[166]}));
|
||||
MUX #(2) mux_pcl_622 (.o(o[622]), .i(i[622]), .s({i[898],i[414]}), .d({~i[1326],i[1630]}));
|
||||
MUX #(2) mux_pch_49 (.o(o[49]), .i(i[49]), .s({i[48],i[741]}), .d({i[483],i[469]}));
|
||||
wire sb_local_1336 = i[801]|i[1263]|~i[621]|~i[512]|i[1698];
|
||||
wire idb_local_833 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_13 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1336 = idb_local_833 & ~i[1527];
|
||||
wire sb2db_833 = sb_local_1336 & ~i[1527];
|
||||
wire adh2sb_1336 = adh_local_13 & ~i[1602];
|
||||
wire sb2adh_13 = sb_local_1336 & ~i[1602];
|
||||
MUX #(8) mux_sb_1336 (.o(o[1336]), .i(i[1336]), .s({i[943],i[801],i[1263],~i[621],~i[512],i[1698],db2sb_1336,adh2sb_1336}), .d({i[657],i[115],i[448],~i[1029],~i[68],i[1136],i[833],i[13]}));
|
||||
MUX #(7) mux_idb_833 (.o(o[833]), .i(i[833]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_833,~i[1577]}), .d({i[657],i[1136],~i[751],i[993],~i[1537],i[1336],i[1625]}));
|
||||
MUX #(6) mux_adl_121 (.o(o[121]), .i(i[121]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[558]}), .d({i[657],~i[1029],~i[68],i[993],~i[1537],i[558]}));
|
||||
MUX #(5) mux_adh_13 (.o(o[13]), .i(i[13]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_13}), .d({i[657],i[558],~i[751],~i[1537],i[1336]}));
|
||||
MUX #(2) mux_pcl_377 (.o(o[377]), .i(i[377]), .s({i[898],i[414]}), .d({i[993],i[121]}));
|
||||
MUX #(2) mux_pch_1551 (.o(o[1551]), .i(i[1551]), .s({i[48],i[741]}), .d({i[13],~i[751]}));
|
||||
wire sb_local_1001 = i[801]|i[1263]|~i[621]|i[1333]|i[1698];
|
||||
wire idb_local_493 = i[1331]|~i[398]|~i[878]|i[710]&~i[1221]|~i[1577];
|
||||
wire adh_local_1539 = ~i[1683]|~i[598]|i[710]&~i[1020];
|
||||
wire db2sb_1001 = idb_local_493 & ~i[1527];
|
||||
wire sb2db_493 = sb_local_1001 & ~i[1527];
|
||||
wire adh2sb_1001 = adh_local_1539 & ~i[1602];
|
||||
wire sb2adh_1539 = sb_local_1001 & ~i[1602];
|
||||
MUX #(8) mux_sb_1001 (.o(o[1001]), .i(i[1001]), .s({i[943],i[801],i[1263],~i[621],i[1333],i[1698],db2sb_1001,adh2sb_1001}), .d({i[657],i[843],i[777],~i[181],~i[1123],i[1653],i[493],i[1539]}));
|
||||
MUX #(7) mux_idb_493 (.o(o[493]), .i(i[493]), .s({i[943],i[1331],~i[398],~i[878],i[710]&~i[1221],sb2db_493,~i[1577]}), .d({i[657],i[1653],i[663],~i[536],~i[529],i[1001],i[69]}));
|
||||
MUX #(6) mux_adl_1299 (.o(o[1299]), .i(i[1299]), .s({i[943],~i[339],~i[745],~i[897],i[710]&~i[1121],i[558]}), .d({i[657],~i[181],~i[1123],~i[536],~i[529],i[558]}));
|
||||
MUX #(5) mux_adh_1539 (.o(o[1539]), .i(i[1539]), .s({i[943],~i[1683],~i[598],i[710]&~i[1020], sb2adh_1539}), .d({i[657],i[558],i[663],~i[529],i[1001]}));
|
||||
MUX #(2) mux_pcl_1611 (.o(o[1611]), .i(i[1611]), .s({i[898],i[414]}), .d({~i[536],i[1299]}));
|
||||
MUX #(2) mux_pch_205 (.o(o[205]), .i(i[205]), .s({i[48],i[741]}), .d({i[1539],i[663]}));
|
||||
assign o[430] = (i[756]^i[412]) & i[899];
|
||||
assign o[1536] = ~(i[964]|i[732]);
|
||||
assign o[17] = ~(i[964]|i[732]);
|
||||
assign o[779] = ~((i[787]|i[1081]|~i[1219])&~i[197]);
|
||||
assign o[1035] = ~(i[943]|i[943]);
|
||||
assign o[1085] = ~(~i[197]&(~i[17]|~i[636]&i[1544])|~i[666]&i[197]);
|
||||
assign o[379] = ~((i[1581]|i[1570])&i[1472]);
|
||||
assign o[480] = ~((~i[334]|~i[675])&i[264]);
|
||||
assign o[1229] = ~((i[1670]|i[1704])&i[919]);
|
||||
assign o[484] = ~((i[1611]|i[1316])&i[1386]);
|
||||
assign o[1408] = ~((i[575]|i[1466])&i[1044]);
|
||||
assign o[1657] = ~((i[1334]|i[948])&i[523]);
|
||||
assign o[1402] = ~((i[502]|i[200])&i[293]);
|
||||
assign o[1631] = ~((i[1359]|i[1253])&i[1184]);
|
||||
assign o[1192] = ~((i[1551]|i[743])&i[609]);
|
||||
assign o[1073] = ~((i[410]|i[622])&i[344]);
|
||||
assign o[1099] = ~((i[1345]|i[1022])&i[1542]);
|
||||
assign o[629] = ~((~i[636]|~i[17])&i[480]|i[50]);
|
||||
assign o[696] = ~((i[1343]|i[877])&~i[660]|~i[357]);
|
||||
assign o[1372] = ~((i[1691]|i[319])&(i[1610]|i[388])|~i[1450]);
|
||||
assign o[333] = ~((i[757]|i[1459])&(i[570]|i[269])|~i[1450]);
|
||||
assign o[1303] = ~((i[1601]|i[1540])&i[335]);
|
||||
assign o[1393] = ~i[873];
|
||||
assign o[945] = ~i[1288];
|
||||
assign o[1591] = ~i[1418];
|
||||
assign o[650] = ~i[823];
|
||||
assign o[175] = ~i[1266];
|
||||
assign o[82] = ~i[527];
|
||||
assign o[1005] = ~i[222];
|
||||
assign o[1349] = ~i[158];
|
||||
assign o[1331] = ~i[266]&i[710]&~i[943];
|
||||
assign o[1698] = ~i[55]&i[710]&~i[943];
|
||||
assign o[1263] = ~i[1404]&i[710]&~i[943];
|
||||
assign o[801] = ~i[1113]&i[710]&~i[943];
|
||||
assign o[414] = ~i[265]&i[710]&~i[943];
|
||||
assign o[654] = ~i[796]&i[710]&~i[943];
|
||||
assign o[859] = ~i[688]&i[710]&~i[943];
|
||||
assign o[325] = ~i[460]&i[710]&~i[943];
|
||||
assign o[984] = ~i[1027]&i[710]&~i[943];
|
||||
assign o[549] = ~i[360]&i[710]&~i[943];
|
||||
assign o[1068] = ~i[805]&i[710]&~i[943];
|
||||
assign o[437] = ~i[1477]&i[710]&~i[943];
|
||||
assign o[1186] = ~i[459]&i[710]&~i[943];
|
||||
assign o[48] = ~i[1162]&i[710]&~i[943];
|
||||
assign o[741] = ~i[1509]&i[710]&~i[943];
|
||||
assign o[534] = ~i[1505]&i[710]&~i[943];
|
||||
assign o[898] = ~i[509]&i[710]&~i[943];
|
||||
assign o[874] = ~i[521]&i[710]&~i[943];
|
||||
assign o[710] = ~i[1171];
|
||||
assign o[943] = i[1171];
|
||||
assign o[297] = ~(i[1032]|~i[1297]&i[943]);
|
||||
assign o[1032] = ~(i[297]|i[1297]&i[943]);
|
||||
assign o[854] = ~(i[975]|~i[159]&i[943]);
|
||||
assign o[330] = ~(i[807]|i[103]&i[943]);
|
||||
assign o[807] = ~(i[330]|~i[103]&i[943]);
|
||||
assign o[975] = ~(i[854]|i[159]&i[943]);
|
||||
assign o[539] = ~i[666];
|
||||
assign o[1156] = ~i[402];
|
||||
assign o[736] = i[710]&~i[190]? i[1630] : i[736];
|
||||
assign o[148] = i[710]&~i[610]? i[52] : i[148];
|
||||
assign o[451] = i[710]&~i[190]? i[1282] : i[451];
|
||||
assign o[1340] = i[710]&~i[190]? i[1242] : i[1340];
|
||||
assign o[211] = i[710]&~i[190]? i[684] : i[211];
|
||||
assign o[1493] = i[710]&~i[190]? i[1299] : i[1493];
|
||||
assign o[1443] = i[710]&~i[610]? i[1651] : i[1443];
|
||||
assign o[195] = i[710]&~i[610]? i[1539] : i[195];
|
||||
assign o[887] = i[710]&~i[190]? i[121] : i[887];
|
||||
assign o[230] = i[710]&~i[610]? i[407] : i[230];
|
||||
assign o[399] = i[710]&~i[610]? i[315] : i[399];
|
||||
assign o[349] = i[710]&~i[610]? i[483] : i[349];
|
||||
assign o[672] = i[710]&~i[610]? i[13] : i[672];
|
||||
assign o[268] = i[710]&~i[190]? i[413] : i[268];
|
||||
assign o[435] = i[710]&~i[190]? i[1437] : i[435];
|
||||
assign o[1237] = i[710]&~i[610]? i[1160] : i[1237];
|
||||
assign o[1532] = i[874]? i[1188] : i[654]? ~i[828] : i[1532];
|
||||
assign o[828] = i[943]? ~i[1532] : i[828];
|
||||
assign o[1098] = i[874]? i[166] : i[654]? ~i[601] : i[1098];
|
||||
assign o[601] = i[943]? ~i[1098] : i[601];
|
||||
assign o[1435] = i[874]? i[1001] : i[654]? ~i[181] : i[1435];
|
||||
assign o[181] = i[943]? ~i[1435] : i[181];
|
||||
assign o[1702] = i[874]? i[1405] : i[654]? ~i[1603] : i[1702];
|
||||
assign o[1603] = i[943]? ~i[1702] : i[1603];
|
||||
assign o[1403] = i[874]? i[54] : i[654]? ~i[418] : i[1403];
|
||||
assign o[418] = i[943]? ~i[1403] : i[418];
|
||||
assign o[1212] = i[874]? i[1336] : i[654]? ~i[1029] : i[1212];
|
||||
assign o[1029] = i[943]? ~i[1212] : i[1029];
|
||||
assign o[81] = i[874]? i[1287] : i[654]? ~i[752] : i[81];
|
||||
assign o[752] = i[943]? ~i[81] : i[752];
|
||||
assign o[183] = i[874]? i[1150] : i[654]? ~i[1064] : i[183];
|
||||
assign o[1064] = i[943]? ~i[183] : i[1064];
|
||||
assign o[737] = i[534]? i[54] : i[737];
|
||||
assign o[1653] = i[534]? i[1494] : i[1653];
|
||||
assign o[305] = i[325]? i[1188] : i[305];
|
||||
assign o[978] = i[534]? i[450] : i[978];
|
||||
assign o[85] = i[1186]? i[1405] : i[85];
|
||||
assign o[727] = i[534]? i[1405] : i[727];
|
||||
assign o[989] = i[325]? i[1405] : i[989];
|
||||
assign o[448] = i[1186]? i[1336] : i[448];
|
||||
assign o[1] = i[1186]? i[1287] : i[1];
|
||||
assign o[162] = i[534]? i[1475] : i[162];
|
||||
assign o[615] = i[325]? i[166] : i[615];
|
||||
assign o[1216] = i[1186]? i[54] : i[1216];
|
||||
assign o[589] = i[1186]? i[166] : i[589];
|
||||
assign o[64] = i[325]? i[54] : i[64];
|
||||
assign o[1148] = i[325]? i[1150] : i[1148];
|
||||
assign o[1136] = i[534]? i[679] : i[1136];
|
||||
assign o[98] = i[1186]? i[1150] : i[98];
|
||||
assign o[115] = i[325]? i[1336] : i[115];
|
||||
assign o[573] = i[325]? i[1287] : i[573];
|
||||
assign o[1648] = i[1186]? i[1188] : i[1648];
|
||||
assign o[1234] = i[534]? i[1009] : i[1234];
|
||||
assign o[777] = i[1186]? i[1001] : i[777];
|
||||
assign o[843] = i[325]? i[1001] : i[843];
|
||||
assign o[858] = i[534]? i[263] : i[858];
|
||||
assign o[1609] = i[710]&i[879]? i[928] : i[1609];
|
||||
assign o[1675] = i[710]&i[879]? i[1309] : i[1675];
|
||||
assign o[1620] = i[710]&i[879]? ~i[1587] : i[1620];
|
||||
assign o[541] = i[710]&i[879]? ~i[1410] : i[541];
|
||||
assign o[1300] = i[710]&i[879]? ~i[1671] : i[1300];
|
||||
assign o[119] = i[710]&i[879]? ~i[809] : i[119];
|
||||
assign o[310] = i[710]&i[879]? ~i[1622] : i[310];
|
||||
assign o[927] = i[710]&i[879]? ~i[540] : i[927];
|
||||
MUX #(5) mux_alu_out_68 (.o(o[68]), .i(i[68]), .s({~i[226]&i[943],~i[1674]&i[943],~i[95]&i[943],~i[101]&i[943],~i[1529]&i[943]}), .d({i[1318],i[1197],i[1084],i[1459],i[336]}));
|
||||
MUX #(5) mux_alu_out_276 (.o(o[276]), .i(i[276]), .s({~i[1674]&i[943],~i[95]&i[943],~i[101]&i[943],~i[1529]&i[943],~i[226]&i[943]}), .d({i[22],i[1691],i[701],i[681],i[350]}));
|
||||
MUX #(5) mux_alu_out_495 (.o(o[495]), .i(i[495]), .s({~i[1674]&i[943],~i[95]&i[943],~i[101]&i[943],~i[226]&i[943],~i[1529]&i[943]}), .d({i[274],i[649],~i[640],i[1063],i[350]}));
|
||||
MUX #(5) mux_alu_out_893 (.o(o[893]), .i(i[893]), .s({~i[1674]&i[943],~i[226]&i[943],~i[95]&i[943],~i[101]&i[943],~i[1529]&i[943]}), .d({i[486],i[336],i[1632],~i[1220],i[477]}));
|
||||
MUX #(5) mux_alu_out_394 (.o(o[394]), .i(i[394]), .s({~i[1674]&i[943],~i[1529]&i[943],~i[95]&i[943],~i[101]&i[943],~i[226]&i[943]}), .d({i[371],i[1628],i[143],i[1525],i[841]}));
|
||||
MUX #(5) mux_alu_out_697 (.o(o[697]), .i(i[697]), .s({~i[95]&i[943],~i[101]&i[943],~i[1674]&i[943],~i[226]&i[943],~i[1529]&i[943]}), .d({i[155],~i[425],i[965],i[681],i[841]}));
|
||||
MUX #(5) mux_alu_out_1490 (.o(o[1490]), .i(i[1490]), .s({~i[226]&i[943],~i[1674]&i[943],~i[101]&i[943],~i[1529]&i[943],~i[95]&i[943]}), .d({i[477],i[651],i[308],i[1063],i[404]}));
|
||||
MUX #(5) mux_alu_out_1123 (.o(o[1123]), .i(i[1123]), .s({~i[1529]&i[943],~i[101]&i[943],~i[95]&i[943],~i[1674]&i[943],~i[226]&i[943]}), .d({i[1318],~i[1241],i[1398],i[532],i[657]}));
|
||||
MUX #(2) mux_alua_1627 (.o(o[1627]), .i(i[1627]), .s({i[549],i[984]}), .d({i[1336],i[558]}));
|
||||
MUX #(3) mux_alub_235 (.o(o[235]), .i(i[235]), .s({ i[1068],i[859],i[437]}), .d({~i[833],i[833],i[121]}));
|
||||
assign o[1084] = ~(i[235]|i[1627]);
|
||||
assign o[336] = ~(i[235]&i[1627]);
|
||||
MUX #(2) mux_alua_1522 (.o(o[1522]), .i(i[1522]), .s({i[549],i[984]}), .d({i[1001],i[558]}));
|
||||
MUX #(3) mux_alub_1535 (.o(o[1535]), .i(i[1535]), .s({ i[1068],i[859],i[437]}), .d({~i[493],i[493],i[1299]}));
|
||||
assign o[1398] = ~(i[1535]|i[1522]);
|
||||
assign o[1318] = ~(i[1535]&i[1522]);
|
||||
MUX #(2) mux_alua_1332 (.o(o[1332]), .i(i[1332]), .s({i[549],i[984]}), .d({i[1287],i[558]}));
|
||||
MUX #(3) mux_alub_704 (.o(o[704]), .i(i[704]), .s({ i[1068],i[859],i[437]}), .d({~i[1473],i[1473],i[1242]}));
|
||||
assign o[1691] = ~(i[704]|i[1332]);
|
||||
assign o[681] = ~(i[704]&i[1332]);
|
||||
MUX #(2) mux_alua_1142 (.o(o[1142]), .i(i[1142]), .s({i[549],i[984]}), .d({i[1405],i[558]}));
|
||||
MUX #(3) mux_alub_1645 (.o(o[1645]), .i(i[1645]), .s({ i[1068],i[859],i[437]}), .d({~i[892],i[892],i[1437]}));
|
||||
assign o[404] = ~(i[1645]|i[1142]);
|
||||
assign o[1063] = ~(i[1645]&i[1142]);
|
||||
MUX #(2) mux_alua_1248 (.o(o[1248]), .i(i[1248]), .s({i[549],i[984]}), .d({i[1150],i[558]}));
|
||||
MUX #(3) mux_alub_1432 (.o(o[1432]), .i(i[1432]), .s({ i[1068],i[859],i[437]}), .d({~i[991],i[991],i[1282]}));
|
||||
assign o[155] = ~(i[1432]|i[1248]);
|
||||
assign o[841] = ~(i[1432]&i[1248]);
|
||||
MUX #(2) mux_alua_1167 (.o(o[1167]), .i(i[1167]), .s({i[549],i[984]}), .d({i[54],i[558]}));
|
||||
MUX #(3) mux_alub_977 (.o(o[977]), .i(i[977]), .s({ i[1068],i[859],i[437]}), .d({~i[1108],i[1108],i[413]}));
|
||||
assign o[143] = ~(i[977]|i[1167]);
|
||||
assign o[1628] = ~(i[977]&i[1167]);
|
||||
MUX #(2) mux_alua_530 (.o(o[530]), .i(i[530]), .s({i[549],i[984]}), .d({i[166],i[558]}));
|
||||
MUX #(3) mux_alub_1678 (.o(o[1678]), .i(i[1678]), .s({ i[1068],i[859],i[437]}), .d({~i[1503],i[1503],i[1630]}));
|
||||
assign o[1632] = ~(i[1678]|i[530]);
|
||||
assign o[477] = ~(i[1678]&i[530]);
|
||||
MUX #(2) mux_alua_1680 (.o(o[1680]), .i(i[1680]), .s({i[549],i[984]}), .d({i[1188],i[558]}));
|
||||
MUX #(3) mux_alub_96 (.o(o[96]), .i(i[96]), .s({ i[1068],i[859],i[437]}), .d({~i[1302],i[1302],i[684]}));
|
||||
assign o[649] = ~(i[96]|i[1680]);
|
||||
assign o[350] = ~(i[96]&i[1680]);
|
||||
assign o[758] = i[943] ? ~i[1005] : i[758];
|
||||
assign o[361] = i[943] ? ~i[82] : i[361];
|
||||
assign o[688] = i[943] ? i[1594] : i[688];
|
||||
assign o[1565] = i[943] ? i[1450] : i[1565];
|
||||
assign o[1027] = i[943] ? i[1649] : i[1027];
|
||||
assign o[760] = i[943] ? i[629] : i[760];
|
||||
assign o[610] = i[943] ? i[696] : i[610];
|
||||
assign o[1436] = i[943] ? i[1155] : i[1436];
|
||||
assign o[1078] = i[943] ? i[334] : i[1078];
|
||||
assign o[1341] = i[943] ? i[695] : i[1341];
|
||||
assign o[56] = i[943] ? i[824] : i[56];
|
||||
assign o[1485] = i[943] ? ~i[945] : i[1485];
|
||||
assign o[1338] = i[710] ? i[720] : i[1338];
|
||||
assign o[449] = i[943] ? ~i[1395] : i[449];
|
||||
assign o[45] = i[943] ? i[1712] : i[45];
|
||||
assign o[1252] = i[943] ? i[1374] : i[1252];
|
||||
assign o[899] = i[943] ? i[19] : i[899];
|
||||
assign o[1126] = i[943] ? i[1465] : i[1126];
|
||||
assign o[680] = i[943] ? i[1688] : i[680];
|
||||
assign o[415] = i[943] ? i[1196] : i[415];
|
||||
assign o[968] = i[943] ? ~i[366] : i[968];
|
||||
assign o[974] = i[943] ? i[774] : i[974];
|
||||
assign o[1404] = i[943] ? i[1106] : i[1404];
|
||||
assign o[1577] = i[943] ? i[1391] : i[1577];
|
||||
assign o[339] = i[943] ? i[632] : i[339];
|
||||
assign o[685] = i[943] ? ~i[1447] : i[685];
|
||||
assign o[596] = i[943] ? i[1085] : i[596];
|
||||
assign o[1291] = i[710] ? i[1382] : i[1291];
|
||||
assign o[527] = i[710] ? ~i[991] : i[527];
|
||||
assign o[666] = i[710] ? i[1380] : i[666];
|
||||
assign o[47] = i[710] ? ~i[865] : i[47];
|
||||
assign o[1221] = i[943] ? i[104] : i[1221];
|
||||
assign o[215] = i[943] ? i[1379] : i[215];
|
||||
assign o[759] = i[710] ? i[187] : i[759];
|
||||
assign o[1693] = i[943] ? i[264] : i[1693];
|
||||
assign o[799] = i[943] ? i[264] : i[799];
|
||||
assign o[40] = i[943] ? i[1575] : i[40];
|
||||
assign o[1602] = i[943] ? i[506] : i[1602];
|
||||
assign o[94] = i[710] ? ~i[1672] : i[94];
|
||||
assign o[456] = i[943] ? i[191] : i[456];
|
||||
assign o[1121] = i[943] ? i[1225] : i[1121];
|
||||
assign o[1530] = i[943] ? ~i[756] : i[1530];
|
||||
assign o[780] = i[943] ? i[1229] : i[780];
|
||||
assign o[554] = i[943] ? i[17] : i[554];
|
||||
assign o[581] = i[943] ? i[599] : i[581];
|
||||
assign o[627] = i[710] ? i[566] : i[627];
|
||||
assign o[1579] = i[710] ? i[187] : i[1579];
|
||||
assign o[338] = i[943] ? i[252] : i[338];
|
||||
assign o[199] = i[943] ? i[327] : i[199];
|
||||
assign o[1269] = i[943] ? ~i[636] : i[1269];
|
||||
assign o[158] = i[710] ? ~i[493] : i[158];
|
||||
assign o[537] = i[943] ? ~i[666] : i[537];
|
||||
assign o[576] = i[943] ? ~i[82] : i[576];
|
||||
assign o[18] = i[710] ? i[468] : i[18];
|
||||
assign o[1699] = i[943] ? ~i[94] : i[1699];
|
||||
assign o[706] = i[943] ? i[678] : i[706];
|
||||
assign o[536] = i[943] ? i[484] : i[536];
|
||||
assign o[940] = i[943] ? i[378] : i[940];
|
||||
assign o[126] = i[943] ? i[1486] : i[126];
|
||||
assign o[1411] = i[943] ? i[515] : i[1411];
|
||||
assign o[751] = i[943] ? i[1192] : i[751];
|
||||
assign o[590] = i[710] ? i[1178] : i[590];
|
||||
assign o[868] = i[943] ? i[1631] : i[868];
|
||||
assign o[360] = i[943] ? ~i[1649] : i[360];
|
||||
assign o[1505] = i[943] ? i[1455] : i[1505];
|
||||
assign o[460] = i[943] ? i[616] : i[460];
|
||||
assign o[151] = i[943] ? ~i[24] : i[151];
|
||||
assign o[526] = i[943] ? i[1500] : i[526];
|
||||
assign o[1533] = i[710] ? i[1180] : i[1533];
|
||||
assign o[529] = i[943] ? ~i[1349] : i[529];
|
||||
assign o[1509] = i[943] ? ~i[272] : i[1509];
|
||||
assign o[1266] = i[710] ? ~i[1503] : i[1266];
|
||||
assign o[1176] = i[943] ? ~i[1409] : i[1176];
|
||||
assign o[671] = i[710] ? ~i[197] : i[671];
|
||||
assign o[99] = i[943] ? ~i[348] : i[99];
|
||||
assign o[1652] = i[943] ? i[385] : i[1652];
|
||||
assign o[357] = i[943] ? ~i[1465] : i[357];
|
||||
assign o[1442] = i[943] ? ~i[69] : i[1442];
|
||||
assign o[1177] = i[943] ? i[1069] : i[1177];
|
||||
assign o[993] = i[943] ? i[20] : i[993];
|
||||
assign o[190] = i[943] ? i[1101] : i[190];
|
||||
assign o[24] = i[710] ? i[1039] : i[24];
|
||||
assign o[1333] = i[943] ? i[80] : i[1333];
|
||||
assign o[1409] = i[710] ? i[916] : i[1409];
|
||||
assign o[1020] = i[943] ? i[1705] : i[1020];
|
||||
assign o[1274] = i[710] ? ~i[1699] : i[1274];
|
||||
assign o[55] = i[943] ? i[11] : i[55];
|
||||
assign o[644] = i[710] ? i[428] : i[644];
|
||||
assign o[521] = i[943] ? i[1358] : i[521];
|
||||
assign o[1326] = i[943] ? i[1073] : i[1326];
|
||||
assign o[69] = i[710] ? i[1181] : i[69];
|
||||
assign o[663] = i[943] ? i[1209] : i[663];
|
||||
assign o[398] = i[943] ? i[824] : i[398];
|
||||
assign o[1124] = i[943] ? i[1065] : i[1124];
|
||||
assign o[1272] = i[710] ? i[197] : i[1272];
|
||||
assign o[1574] = i[943] ? i[1228] : i[1574];
|
||||
assign o[1438] = i[943] ? i[504] : i[1438];
|
||||
assign o[1360] = i[710] ? i[1091] : i[1360];
|
||||
assign o[1713] = i[943] ? i[501] : i[1713];
|
||||
assign o[1276] = i[710] ? i[197] : i[1276];
|
||||
assign o[1049] = i[943] ? i[160] : i[1049];
|
||||
assign o[73] = i[943] ? ~i[366] : i[73];
|
||||
assign o[1102] = i[943] ? i[1099] : i[1102];
|
||||
assign o[512] = i[943] ? i[1130] : i[512];
|
||||
assign o[745] = i[943] ? i[674] : i[745];
|
||||
assign o[114] = i[943] ? i[1402] : i[114];
|
||||
assign o[897] = i[943] ? i[1211] : i[897];
|
||||
assign o[265] = i[943] ? i[182] : i[265];
|
||||
assign o[1161] = i[710] ? ~i[1380] : i[1161];
|
||||
assign o[1528] = i[710] ? i[1215] : i[1528];
|
||||
assign o[50] = i[710] ? i[1350] : i[50];
|
||||
assign o[1581] = i[710] ? i[1275] : i[1581];
|
||||
assign o[1472] = i[710] ? i[827] : i[1472];
|
||||
assign o[226] = i[710] ? ~i[968] : i[226];
|
||||
assign o[621] = i[943] ? i[1586] : i[621];
|
||||
assign o[266] = i[943] ? i[1037] : i[266];
|
||||
assign o[1149] = i[710] ? i[1368] : i[1149];
|
||||
assign o[1051] = i[943] ? ~i[32] : i[1051];
|
||||
assign o[1321] = i[943] ? i[32] : i[1321];
|
||||
assign o[1284] = i[943] ? ~i[650] : i[1284];
|
||||
assign o[560] = i[943] ? ~i[1327] : i[560];
|
||||
assign o[1452] = i[943] ? ~i[698] : i[1452];
|
||||
assign o[469] = i[943] ? i[875] : i[469];
|
||||
assign o[559] = i[943] ? ~i[1272] : i[559];
|
||||
assign o[44] = i[943] ? ~i[1625] : i[44];
|
||||
assign o[1606] = i[710] ? i[472] : i[1606];
|
||||
assign o[1624] = i[710] ? i[197] : i[1624];
|
||||
assign o[88] = i[943] ? i[522] : i[88];
|
||||
assign o[982] = i[943] ? ~i[837] : i[982];
|
||||
assign o[865] = i[943] ? ~i[89] : i[865];
|
||||
assign o[1431] = i[943] ? i[1134] : i[1431];
|
||||
assign o[832] = i[943] ? i[586] : i[832];
|
||||
assign o[294] = i[943] ? i[14] : i[294];
|
||||
assign o[675] = i[710] ? i[330] : i[675];
|
||||
assign o[599] = i[710] ? ~i[561] : i[599];
|
||||
assign o[1669] = i[943] ? ~i[1591] : i[1669];
|
||||
assign o[1690] = i[943] ? ~i[1349] : i[1690];
|
||||
assign o[955] = i[943] ? ~i[945] : i[955];
|
||||
assign o[698] = i[710] ? i[1290] : i[698];
|
||||
assign o[796] = i[943] ? ~i[1358] : i[796];
|
||||
assign o[1104] = i[943] ? i[889] : i[1104];
|
||||
assign o[1283] = i[943] ? i[340] : i[1283];
|
||||
assign o[1008] = i[943] ? i[169] : i[1008];
|
||||
assign o[1625] = i[710] ? i[299] : i[1625];
|
||||
assign o[222] = i[710] ? ~i[1108] : i[222];
|
||||
assign o[1011] = i[943] ? ~i[666] : i[1011];
|
||||
assign o[1036] = i[943] ? ~i[1395] : i[1036];
|
||||
assign o[598] = i[943] ? i[176] : i[598];
|
||||
assign o[820] = i[943] ? i[1657] : i[820];
|
||||
assign o[1529] = i[710] ? ~i[1574] : i[1529];
|
||||
assign o[95] = i[710] ? ~i[88] : i[95];
|
||||
assign o[1131] = i[943] ? i[1352] : i[1131];
|
||||
assign o[1418] = i[710] ? ~i[833] : i[1418];
|
||||
assign o[197] = i[943] ? i[944] : i[197];
|
||||
assign o[562] = i[710] ? ~i[1032] : i[562];
|
||||
assign o[509] = i[943] ? ~i[182] : i[509];
|
||||
assign o[597] = i[710] ? ~i[799] : i[597];
|
||||
assign o[1288] = i[710] ? ~i[1473] : i[1288];
|
||||
assign o[792] = i[710] ? i[851] : i[792];
|
||||
assign o[1447] = i[710] ? i[262] : i[1447];
|
||||
assign o[1537] = i[943] ? ~i[1591] : i[1537];
|
||||
assign o[369] = i[943] ? ~i[1393] : i[369];
|
||||
assign o[894] = i[943] ? ~i[650] : i[894];
|
||||
assign o[829] = i[943] ? ~i[175] : i[829];
|
||||
assign o[902] = i[710] ? i[197] : i[902];
|
||||
assign o[823] = i[710] ? ~i[1302] : i[823];
|
||||
assign o[756] = i[710] ? i[626] : i[756];
|
||||
assign o[683] = i[943] ? i[1225] : i[683];
|
||||
assign o[1373] = i[943] ? i[188] : i[1373];
|
||||
assign o[1132] = i[710] ? i[1087] : i[1132];
|
||||
assign o[1607] = i[943] ? ~i[627] : i[1607];
|
||||
assign o[1395] = i[710] ? i[854] : i[1395];
|
||||
assign o[960] = i[943] ? i[1081] : i[960];
|
||||
assign o[614] = i[943] ? ~i[1107] : i[614];
|
||||
assign o[848] = i[943] ? i[473] : i[848];
|
||||
assign o[223] = i[710] ? i[1215] : i[223];
|
||||
assign o[1679] = i[710] ? i[197] : i[1679];
|
||||
assign o[116] = i[943] ? ~i[1005] : i[116];
|
||||
assign o[459] = i[943] ? i[844] : i[459];
|
||||
assign o[164] = i[943] ? i[333] : i[164];
|
||||
assign o[1061] = i[943] ? i[207] : i[1061];
|
||||
assign o[498] = i[943] ? ~i[175] : i[498];
|
||||
assign o[1113] = i[943] ? i[1717] : i[1113];
|
||||
assign o[402] = i[710] ? i[187] : i[402];
|
||||
assign o[15] = i[943] ? i[474] : i[15];
|
||||
assign o[1683] = i[943] ? i[1090] : i[1683];
|
||||
assign o[878] = i[943] ? ~i[1338] : i[878];
|
||||
assign o[1553] = i[710] ? i[845] : i[1553];
|
||||
assign o[323] = i[710] ? i[959] : i[323];
|
||||
assign o[729] = i[943] ? i[261] : i[729];
|
||||
assign o[1477] = i[943] ? i[604] : i[1477];
|
||||
assign o[1450] = i[710] ? ~i[680] : i[1450];
|
||||
assign o[1674] = i[710] ? ~i[415] : i[1674];
|
||||
assign o[873] = i[710] ? ~i[892] : i[873];
|
||||
assign o[170] = i[943] ? i[1117] : i[170];
|
||||
assign o[561] = i[943] ? i[29] : i[561];
|
||||
assign o[408] = i[943] ? i[1308] : i[408];
|
||||
assign o[101] = i[710] ? ~i[982] : i[101];
|
||||
assign o[805] = i[943] ? i[779] : i[805];
|
||||
assign o[393] = i[943] ? i[1179] : i[393];
|
||||
assign o[1570] = i[710] ? i[430] : i[1570];
|
||||
assign o[653] = i[710] ? ~i[1438] : i[653];
|
||||
assign o[1516] = i[943] ? ~i[1393] : i[1516];
|
||||
assign o[1673] = i[943] ? i[1646] : i[1673];
|
||||
assign o[443] = i[943] ? i[513] : i[443];
|
||||
assign o[785] = i[710] ? ~i[73] : i[785];
|
||||
assign o[1527] = i[943] ? i[1347] : i[1527];
|
||||
assign o[348] = i[710] ? i[1495] : i[348];
|
||||
assign o[1162] = i[943] ? i[272] : i[1162];
|
||||
assign o[32] = i[710] ? i[1082] : i[32];
|
256
rom.hex
Normal file
256
rom.hex
Normal file
@ -0,0 +1,256 @@
|
||||
D8
|
||||
58
|
||||
A0
|
||||
7F
|
||||
8C
|
||||
12
|
||||
D0
|
||||
A9
|
||||
A7
|
||||
8D
|
||||
11
|
||||
D0
|
||||
8D
|
||||
13
|
||||
D0
|
||||
C9
|
||||
DF
|
||||
F0
|
||||
13
|
||||
C9
|
||||
9B
|
||||
F0
|
||||
03
|
||||
C8
|
||||
10
|
||||
0F
|
||||
A9
|
||||
DC
|
||||
20
|
||||
EF
|
||||
FF
|
||||
A9
|
||||
8D
|
||||
20
|
||||
EF
|
||||
FF
|
||||
A0
|
||||
01
|
||||
88
|
||||
30
|
||||
F6
|
||||
AD
|
||||
11
|
||||
D0
|
||||
10
|
||||
FB
|
||||
AD
|
||||
10
|
||||
D0
|
||||
99
|
||||
00
|
||||
02
|
||||
20
|
||||
EF
|
||||
FF
|
||||
C9
|
||||
8D
|
||||
D0
|
||||
D4
|
||||
A0
|
||||
FF
|
||||
A9
|
||||
00
|
||||
AA
|
||||
0A
|
||||
85
|
||||
2B
|
||||
C8
|
||||
B9
|
||||
00
|
||||
02
|
||||
C9
|
||||
8D
|
||||
F0
|
||||
D4
|
||||
C9
|
||||
AE
|
||||
90
|
||||
F4
|
||||
F0
|
||||
F0
|
||||
C9
|
||||
BA
|
||||
F0
|
||||
EB
|
||||
C9
|
||||
D2
|
||||
F0
|
||||
3B
|
||||
86
|
||||
28
|
||||
86
|
||||
29
|
||||
84
|
||||
2A
|
||||
B9
|
||||
00
|
||||
02
|
||||
49
|
||||
B0
|
||||
C9
|
||||
0A
|
||||
90
|
||||
06
|
||||
69
|
||||
88
|
||||
C9
|
||||
FA
|
||||
90
|
||||
11
|
||||
0A
|
||||
0A
|
||||
0A
|
||||
0A
|
||||
A2
|
||||
04
|
||||
0A
|
||||
26
|
||||
28
|
||||
26
|
||||
29
|
||||
CA
|
||||
D0
|
||||
F8
|
||||
C8
|
||||
D0
|
||||
E0
|
||||
C4
|
||||
2A
|
||||
F0
|
||||
97
|
||||
24
|
||||
2B
|
||||
50
|
||||
10
|
||||
A5
|
||||
28
|
||||
81
|
||||
26
|
||||
E6
|
||||
26
|
||||
D0
|
||||
B5
|
||||
E6
|
||||
27
|
||||
4C
|
||||
44
|
||||
FF
|
||||
6C
|
||||
24
|
||||
00
|
||||
30
|
||||
2B
|
||||
A2
|
||||
02
|
||||
B5
|
||||
27
|
||||
95
|
||||
25
|
||||
95
|
||||
23
|
||||
CA
|
||||
D0
|
||||
F7
|
||||
D0
|
||||
14
|
||||
A9
|
||||
8D
|
||||
20
|
||||
EF
|
||||
FF
|
||||
A5
|
||||
25
|
||||
20
|
||||
DC
|
||||
FF
|
||||
A5
|
||||
24
|
||||
20
|
||||
DC
|
||||
FF
|
||||
A9
|
||||
BA
|
||||
20
|
||||
EF
|
||||
FF
|
||||
A9
|
||||
A0
|
||||
20
|
||||
EF
|
||||
FF
|
||||
A1
|
||||
24
|
||||
20
|
||||
DC
|
||||
FF
|
||||
86
|
||||
2B
|
||||
A5
|
||||
24
|
||||
C5
|
||||
28
|
||||
A5
|
||||
25
|
||||
E5
|
||||
29
|
||||
B0
|
||||
C1
|
||||
E6
|
||||
24
|
||||
D0
|
||||
02
|
||||
E6
|
||||
25
|
||||
A5
|
||||
24
|
||||
29
|
||||
07
|
||||
10
|
||||
C8
|
||||
48
|
||||
4A
|
||||
4A
|
||||
4A
|
||||
4A
|
||||
20
|
||||
E5
|
||||
FF
|
||||
68
|
||||
29
|
||||
0F
|
||||
09
|
||||
B0
|
||||
C9
|
||||
BA
|
||||
90
|
||||
02
|
||||
69
|
||||
06
|
||||
2C
|
||||
12
|
||||
D0
|
||||
30
|
||||
FB
|
||||
8D
|
||||
12
|
||||
D0
|
||||
60
|
||||
00
|
||||
00
|
||||
00
|
||||
0F
|
||||
00
|
||||
FF
|
||||
00
|
||||
00
|
118
tm1638.v
Normal file
118
tm1638.v
Normal file
@ -0,0 +1,118 @@
|
||||
module tm1638(
|
||||
input clk,
|
||||
input rst,
|
||||
|
||||
input data_latch,
|
||||
inout [7:0] data,
|
||||
input rw,
|
||||
|
||||
output busy,
|
||||
|
||||
output sclk,
|
||||
input dio_in,
|
||||
output dio_out
|
||||
);
|
||||
|
||||
localparam CLK_DIV = 3; // seems happy at 12MHz with 3
|
||||
localparam CLK_DIV1 = CLK_DIV - 1;
|
||||
localparam [1:0]
|
||||
S_IDLE = 2'h0,
|
||||
S_WAIT = 2'h1,
|
||||
S_TRANSFER = 2'h2;
|
||||
|
||||
reg [1:0] cur_state, next_state;
|
||||
reg [CLK_DIV1:0] sclk_d, sclk_q;
|
||||
reg [7:0] data_d, data_q, data_out_d, data_out_q;
|
||||
reg dio_out, dio_out_d;
|
||||
reg [2:0] ctr_d, ctr_q;
|
||||
|
||||
// output read data if we're reading
|
||||
assign data = rw ? 8'hZZ : data_out_q;
|
||||
|
||||
// we're busy if we're not idle
|
||||
assign busy = cur_state != S_IDLE;
|
||||
|
||||
// tick the clock if we're transfering data
|
||||
assign sclk = ~((~sclk_q[CLK_DIV1]) & (cur_state == S_TRANSFER));
|
||||
|
||||
always @(*)
|
||||
begin
|
||||
sclk_d = sclk_q;
|
||||
data_d = data_q;
|
||||
dio_out_d = dio_out;
|
||||
ctr_d = ctr_q;
|
||||
data_out_d = data_out_q;
|
||||
next_state = cur_state;
|
||||
|
||||
case(cur_state)
|
||||
S_IDLE: begin
|
||||
sclk_d = 0;
|
||||
if (data_latch) begin
|
||||
// if we're reading, set to zero, otherwise latch in
|
||||
// data to send
|
||||
data_d = rw ? data : 8'b0;
|
||||
next_state = S_WAIT;
|
||||
end
|
||||
end
|
||||
|
||||
S_WAIT: begin
|
||||
sclk_d = sclk_q + 1;
|
||||
// wait till we're halfway into clock pulse
|
||||
if (sclk_q == {1'b0, {CLK_DIV1{1'b1}}}) begin
|
||||
sclk_d = 0;
|
||||
next_state = S_TRANSFER;
|
||||
end
|
||||
end
|
||||
|
||||
S_TRANSFER: begin
|
||||
sclk_d = sclk_q + 1;
|
||||
if (sclk_q == 0) begin
|
||||
// start of clock pulse, output MSB
|
||||
dio_out_d = data_q[0];
|
||||
|
||||
end else if (sclk_q == {1'b0, {CLK_DIV1{1'b1}}}) begin
|
||||
// halfway through pulse, read from device
|
||||
data_d = {dio_in, data_q[7:1]};
|
||||
|
||||
end else if (&sclk_q) begin
|
||||
// end of pulse, tick the counter
|
||||
ctr_d = ctr_q + 1;
|
||||
|
||||
if (&ctr_q) begin
|
||||
// last bit sent, switch back to idle
|
||||
// and output any data recieved
|
||||
next_state = S_IDLE;
|
||||
data_out_d = data_q;
|
||||
|
||||
dio_out_d = 0;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
default:
|
||||
next_state = S_IDLE;
|
||||
endcase
|
||||
end
|
||||
|
||||
always @(posedge clk)
|
||||
begin
|
||||
if (rst)
|
||||
begin
|
||||
cur_state <= S_IDLE;
|
||||
sclk_q <= 0;
|
||||
ctr_q <= 0;
|
||||
dio_out <= 0;
|
||||
data_q <= 0;
|
||||
data_out_q <= 0;
|
||||
end
|
||||
else
|
||||
begin
|
||||
cur_state <= next_state;
|
||||
sclk_q <= sclk_d;
|
||||
ctr_q <= ctr_d;
|
||||
dio_out <= dio_out_d;
|
||||
data_q <= data_d;
|
||||
data_out_q <= data_out_d;
|
||||
end
|
||||
end
|
||||
endmodule
|
212
uart.v
Normal file
212
uart.v
Normal file
@ -0,0 +1,212 @@
|
||||
// Documented Verilog UART
|
||||
// Copyright (C) 2010 Timothy Goddard (tim@goddard.net.nz)
|
||||
// Distributed under the MIT licence.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
module uart(
|
||||
input clk, // The master clock for this module
|
||||
input rst, // Synchronous reset.
|
||||
input rx, // Incoming serial line
|
||||
output tx, // Outgoing serial line
|
||||
input transmit, // Signal to transmit
|
||||
input [7:0] tx_byte, // Byte to transmit
|
||||
output received, // Indicated that a byte has been received.
|
||||
output [7:0] rx_byte, // Byte received
|
||||
output is_receiving, // Low when receive line is idle.
|
||||
output is_transmitting, // Low when transmit line is idle.
|
||||
output recv_error // Indicates error in receiving packet.
|
||||
);
|
||||
|
||||
parameter CLOCK_DIVIDE = 1302; // clock rate (50Mhz) / (baud rate (9600) * 4)
|
||||
|
||||
// States for the receiving state machine.
|
||||
// These are just constants, not parameters to override.
|
||||
parameter RX_IDLE = 0;
|
||||
parameter RX_CHECK_START = 1;
|
||||
parameter RX_READ_BITS = 2;
|
||||
parameter RX_CHECK_STOP = 3;
|
||||
parameter RX_DELAY_RESTART = 4;
|
||||
parameter RX_ERROR = 5;
|
||||
parameter RX_RECEIVED = 6;
|
||||
|
||||
// States for the transmitting state machine.
|
||||
// Constants - do not override.
|
||||
parameter TX_IDLE = 0;
|
||||
parameter TX_SENDING = 1;
|
||||
parameter TX_DELAY_RESTART = 2;
|
||||
|
||||
reg [10:0] rx_clk_divider = CLOCK_DIVIDE;
|
||||
reg [10:0] tx_clk_divider = CLOCK_DIVIDE;
|
||||
|
||||
reg [2:0] recv_state = RX_IDLE;
|
||||
reg [5:0] rx_countdown;
|
||||
reg [3:0] rx_bits_remaining;
|
||||
reg [7:0] rx_data;
|
||||
|
||||
reg tx_out = 1'b1;
|
||||
reg [1:0] tx_state = TX_IDLE;
|
||||
reg [5:0] tx_countdown;
|
||||
reg [3:0] tx_bits_remaining;
|
||||
reg [7:0] tx_data;
|
||||
|
||||
assign received = recv_state == RX_RECEIVED;
|
||||
assign recv_error = recv_state == RX_ERROR;
|
||||
assign is_receiving = recv_state != RX_IDLE;
|
||||
assign rx_byte = rx_data;
|
||||
|
||||
assign tx = tx_out;
|
||||
assign is_transmitting = tx_state != TX_IDLE;
|
||||
|
||||
always @(posedge clk) begin
|
||||
if (rst) begin
|
||||
recv_state = RX_IDLE;
|
||||
tx_state = TX_IDLE;
|
||||
end
|
||||
|
||||
// The clk_divider counter counts down from
|
||||
// the CLOCK_DIVIDE constant. Whenever it
|
||||
// reaches 0, 1/16 of the bit period has elapsed.
|
||||
// Countdown timers for the receiving and transmitting
|
||||
// state machines are decremented.
|
||||
rx_clk_divider = rx_clk_divider - 1;
|
||||
if (!rx_clk_divider) begin
|
||||
rx_clk_divider = CLOCK_DIVIDE;
|
||||
rx_countdown = rx_countdown - 1;
|
||||
end
|
||||
tx_clk_divider = tx_clk_divider - 1;
|
||||
if (!tx_clk_divider) begin
|
||||
tx_clk_divider = CLOCK_DIVIDE;
|
||||
tx_countdown = tx_countdown - 1;
|
||||
end
|
||||
|
||||
// Receive state machine
|
||||
case (recv_state)
|
||||
RX_IDLE: begin
|
||||
// A low pulse on the receive line indicates the
|
||||
// start of data.
|
||||
if (!rx) begin
|
||||
// Wait half the period - should resume in the
|
||||
// middle of this first pulse.
|
||||
rx_clk_divider = CLOCK_DIVIDE;
|
||||
rx_countdown = 2;
|
||||
recv_state = RX_CHECK_START;
|
||||
end
|
||||
end
|
||||
RX_CHECK_START: begin
|
||||
if (!rx_countdown) begin
|
||||
// Check the pulse is still there
|
||||
if (!rx) begin
|
||||
// Pulse still there - good
|
||||
// Wait the bit period to resume half-way
|
||||
// through the first bit.
|
||||
rx_countdown = 4;
|
||||
rx_bits_remaining = 8;
|
||||
recv_state = RX_READ_BITS;
|
||||
end else begin
|
||||
// Pulse lasted less than half the period -
|
||||
// not a valid transmission.
|
||||
recv_state = RX_ERROR;
|
||||
end
|
||||
end
|
||||
end
|
||||
RX_READ_BITS: begin
|
||||
if (!rx_countdown) begin
|
||||
// Should be half-way through a bit pulse here.
|
||||
// Read this bit in, wait for the next if we
|
||||
// have more to get.
|
||||
rx_data = {rx, rx_data[7:1]};
|
||||
rx_countdown = 4;
|
||||
rx_bits_remaining = rx_bits_remaining - 1;
|
||||
recv_state = rx_bits_remaining ? RX_READ_BITS : RX_CHECK_STOP;
|
||||
end
|
||||
end
|
||||
RX_CHECK_STOP: begin
|
||||
if (!rx_countdown) begin
|
||||
// Should resume half-way through the stop bit
|
||||
// This should be high - if not, reject the
|
||||
// transmission and signal an error.
|
||||
recv_state = rx ? RX_RECEIVED : RX_ERROR;
|
||||
end
|
||||
end
|
||||
RX_DELAY_RESTART: begin
|
||||
// Waits a set number of cycles before accepting
|
||||
// another transmission.
|
||||
recv_state = rx_countdown ? RX_DELAY_RESTART : RX_IDLE;
|
||||
end
|
||||
RX_ERROR: begin
|
||||
// There was an error receiving.
|
||||
// Raises the recv_error flag for one clock
|
||||
// cycle while in this state and then waits
|
||||
// 2 bit periods before accepting another
|
||||
// transmission.
|
||||
rx_countdown = 8;
|
||||
recv_state = RX_DELAY_RESTART;
|
||||
end
|
||||
RX_RECEIVED: begin
|
||||
// Successfully received a byte.
|
||||
// Raises the received flag for one clock
|
||||
// cycle while in this state.
|
||||
recv_state = RX_IDLE;
|
||||
end
|
||||
endcase
|
||||
|
||||
// Transmit state machine
|
||||
case (tx_state)
|
||||
TX_IDLE: begin
|
||||
if (transmit) begin
|
||||
// If the transmit flag is raised in the idle
|
||||
// state, start transmitting the current content
|
||||
// of the tx_byte input.
|
||||
tx_data = tx_byte;
|
||||
// Send the initial, low pulse of 1 bit period
|
||||
// to signal the start, followed by the data
|
||||
tx_clk_divider = CLOCK_DIVIDE;
|
||||
tx_countdown = 4;
|
||||
tx_out = 0;
|
||||
tx_bits_remaining = 8;
|
||||
tx_state = TX_SENDING;
|
||||
end
|
||||
end
|
||||
TX_SENDING: begin
|
||||
if (!tx_countdown) begin
|
||||
if (tx_bits_remaining) begin
|
||||
tx_bits_remaining = tx_bits_remaining - 1;
|
||||
tx_out = tx_data[0];
|
||||
tx_data = {1'b0, tx_data[7:1]};
|
||||
tx_countdown = 4;
|
||||
tx_state = TX_SENDING;
|
||||
end else begin
|
||||
// Set delay to send out 2 stop bits.
|
||||
tx_out = 1;
|
||||
tx_countdown = 8;
|
||||
tx_state = TX_DELAY_RESTART;
|
||||
end
|
||||
end
|
||||
end
|
||||
TX_DELAY_RESTART: begin
|
||||
// Wait until tx_countdown reaches the end before
|
||||
// we send another transmission. This covers the
|
||||
// "stop bit" delay.
|
||||
tx_state = tx_countdown ? TX_DELAY_RESTART : TX_IDLE;
|
||||
end
|
||||
endcase
|
||||
end
|
||||
|
||||
endmodule
|
Loading…
x
Reference in New Issue
Block a user