-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathF091.v
17 lines (16 loc) · 803 Bytes
/
F091.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**************************************************************************
** ND120 DGA (Decode Gate Array) **
** DECODE/DGA **
** **
** NEC F091 - H,L LEVEL GENERATOR **
** **
** Last reviewed: 20-MAY-2024 **
** Ronny Hansen **
***************************************************************************/
module F091 (
output N01,
output N02
);
assign N01 = 1'b1; // High
assign N02 = 1'b0; // Low
endmodule