mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-01-20 01:34:38 +00:00
40 lines
1.0 KiB
Verilog
40 lines
1.0 KiB
Verilog
`timescale 1ns / 1ps
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
// Company:
|
|
// Engineer: Paul Wightmore
|
|
//
|
|
// Create Date: 19:40:01 05/10/2018
|
|
// Design Name: LS08
|
|
// Module Name: system86/ttl/ls08.v
|
|
// Project Name: Namco System86 simulation
|
|
// Target Devices:
|
|
// Tool versions:
|
|
// Description: LS08 - Quadruple 2-Input Positive-AND Gates
|
|
//
|
|
// Dependencies:
|
|
//
|
|
// Revision:
|
|
// Revision 0.01 - File Created
|
|
// Additional Comments:
|
|
// License: https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
module LS08(
|
|
input wire A1,
|
|
input wire B1,
|
|
input wire A2,
|
|
input wire B2,
|
|
input wire A3,
|
|
input wire B3,
|
|
input wire A4,
|
|
input wire B4,
|
|
output wire Y1,
|
|
output wire Y2,
|
|
output wire Y3,
|
|
output wire Y4
|
|
);
|
|
|
|
and ls08[0:3] ( {Y4, Y3, Y2, Y1}, {A4, A3, A2, A1}, {B4, B3, B2, B1} );
|
|
|
|
endmodule
|