Skip to content

Instantly share code, notes, and snippets.

View suhaildawood's full-sized avatar

Suhail Dawood suhaildawood

View GitHub Profile
@suhaildawood
suhaildawood / csc258-l2.v
Last active August 29, 2015 14:14
CSC258 Lab 2
// CSC258 | Lab 2 | Part 2
module part2(SW, LEDR, LEDG);
input [17:0] SW;
output [17:0] LEDR, LEDG;
wire Cin, Cout;
wire [2:0] C;
wire [3:0] A, B, S;
assign Cin = SW[8];