OpenCores
URL https://opencores.org/ocsvn/a-z80/a-z80/trunk

Subversion Repositories a-z80

[/] [a-z80/] [trunk/] [cpu/] [bus/] [data_switch.v] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 gdevic
// Copyright (C) 1991-2013 Altera Corporation
2
// Your use of Altera Corporation's design tools, logic functions 
3
// and other software and tools, and its AMPP partner logic 
4
// functions, and any output files from any of the foregoing 
5
// (including device programming or simulation files), and any 
6
// associated documentation or information are expressly subject 
7
// to the terms and conditions of the Altera Program License 
8
// Subscription Agreement, Altera MegaCore Function License 
9
// Agreement, or other applicable license agreement, including, 
10
// without limitation, that your use is for the sole purpose of 
11
// programming logic devices manufactured by Altera and sold by 
12
// Altera or its authorized distributors.  Please refer to the 
13
// applicable agreement for further details.
14
 
15
// PROGRAM              "Quartus II 64-Bit"
16
// VERSION              "Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Web Edition"
17
// CREATED              "Mon Oct 13 12:33:19 2014"
18
 
19
module data_switch(
20
        sw_up_en,
21
        sw_down_en,
22
        db_down,
23
        db_up
24
);
25
 
26
 
27
input wire      sw_up_en;
28
input wire      sw_down_en;
29
inout wire      [7:0] db_down;
30
inout wire      [7:0] db_up;
31
 
32
 
33
 
34
 
35
 
36
assign  db_up[7] = sw_up_en ? db_down[7] : 1'bz;
37
assign  db_up[6] = sw_up_en ? db_down[6] : 1'bz;
38
assign  db_up[5] = sw_up_en ? db_down[5] : 1'bz;
39
assign  db_up[4] = sw_up_en ? db_down[4] : 1'bz;
40
assign  db_up[3] = sw_up_en ? db_down[3] : 1'bz;
41
assign  db_up[2] = sw_up_en ? db_down[2] : 1'bz;
42
assign  db_up[1] = sw_up_en ? db_down[1] : 1'bz;
43
assign  db_up[0] = sw_up_en ? db_down[0] : 1'bz;
44
 
45
assign  db_down[7] = sw_down_en ? db_up[7] : 1'bz;
46
assign  db_down[6] = sw_down_en ? db_up[6] : 1'bz;
47
assign  db_down[5] = sw_down_en ? db_up[5] : 1'bz;
48
assign  db_down[4] = sw_down_en ? db_up[4] : 1'bz;
49
assign  db_down[3] = sw_down_en ? db_up[3] : 1'bz;
50
assign  db_down[2] = sw_down_en ? db_up[2] : 1'bz;
51
assign  db_down[1] = sw_down_en ? db_up[1] : 1'bz;
52
assign  db_down[0] = sw_down_en ? db_up[0] : 1'bz;
53
 
54
 
55
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.