module NOT(A, Y); input A; output Y = ~A; endmodule module NAND(A, B, Y); input A, B; output Y = ~(A & B); endmodule module NOR(A, B, Y); input A, B; output Y = ~(A | B); endmodule module DFF(C, D, Q); input C, D; output reg Q; always @(posedge C) Q <= D; endmodule _max10?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/examples/intel/MAX10/run_max10
blob: ef7649afbd4d71bfe1ce0a1e2577e5aac980117a (plain)
1